Model.createpoint#
- Model.createpoint(x, y, z, system)#
Creates a point in space.
- Parameters:
x (double) – The x coordinate of the point.
y (double) – The y coordinate of the point.
z (double) – The z coordinate of the point.
system (Entity) – The system entity describing the system in which the points are defined.
Example#
Create a point at ( 12.0 , 13.5 , 16.3 )#import hm import hm.entities as ent model = hm.Model() model.createpoint(x=12.0, y=13.5, z=16.3, system=None)