Adding new gui to Sketch3d
This commit is contained in:
parent
8eae09591d
commit
e0f92b32dc
6 changed files with 134 additions and 10 deletions
|
|
@ -292,6 +292,7 @@ namespace tp {
|
|||
Vec2<Type> operator-(Type val) const { return Vec2<Type>(x - val, y - val); }
|
||||
Vec2<Type> operator*(Type val) const { return Vec2<Type>(x * val, y * val); }
|
||||
Vec2<Type> operator/(Type val) const { return Vec2<Type>(x / val, y / val); }
|
||||
Vec2<Type> operator/(Vec2<Type> val) const { return Vec2<Type>(x / val.x, y / val.y); }
|
||||
|
||||
// write
|
||||
void operator-=(Type val) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue