mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-10-20 23:31:13 -06:00
Some incomplete work for moving objects in 3D plater
This commit is contained in:
parent
ac2b6de62b
commit
2f2ae75529
5 changed files with 83 additions and 20 deletions
|
@ -121,4 +121,10 @@ Point::coincides_with(point_sv)
|
|||
void set_z(double val)
|
||||
%code{% THIS->z = val; %};
|
||||
void translate(double x, double y, double z);
|
||||
double distance_to(Pointf3* point)
|
||||
%code{% RETVAL = THIS->distance_to(*point); %};
|
||||
Clone<Pointf3> negative()
|
||||
%code{% RETVAL = THIS->negative(); %};
|
||||
Clone<Pointf3> vector_to(Pointf3* point)
|
||||
%code{% RETVAL = THIS->vector_to(*point); %};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue