|
- CreateZoneBox(zone_name, Xmin, Xmax, Ymin, Ymax, Zmin, Zmax)
Returns an instance of the class zone of type box
after its creation
- zone_name: the name of the zone based on a box
- Xmin, Xmax: min/max coordinates extrêmes along X
- Ymin, Ymax: min/max coordinates extrêmes along Y
- Zmin, Zmax: min/max coordinates extrêmes along Z
|
- CreateZoneCylinder(zone_name, Xbase, Ybase, Zbase, Xaxe, Yaxe, Zaxe, R, H)
Returns an instance of the class zone of type cylinder
after its creation
- zone_name: the name of the zone based on a cylinder
- Xbase, Ybase, Zbase: coordinates of a point on the axis
- Xaxe, Yaxe, Zaxe: vector of the axis
- R: radius of the cylinder
- H: height of the cylinder
|
- CreateZonePipe(zone_name, Xbase, Ybase, Zbase, Xaxe, Yaxe, Zaxe, R, H, Rint)
Returns an instance of the class zone of type pipe
after its creation
- zone_name: the name of the zone based on a pipe
- Xbase, Ybase, Zbase: coordinates of a point on the axis
- Xaxe, Yaxe, Zaxe: vector of the axis
- R: external radius of the pipe
- H: height of the pipe
- R: internal radius of the pipe
|
- CreateZoneSphere(zone_name, Xcen, Ycen, Zcen, R)
Returns an instance of the class zone of type sphere
after its creation
- zone_name: the name of the zone based on a sphere
- Xcen, Ycen, Zcen: coordinates of the center of the sphere
- R: radius of the sphere
|
- CreateZoneBox2D(zone_name, Umin, Umax, Vmin, Vmax, Orient)
Returns an instance of the class zone of type rectangle
after its creation
- zone_name: the name of the zone based on a rectangle
- Umin, Umax: min/max coordinates for the 1st dimension
- Vmin, Vmax: min/max coordinates for the 2nd dimension
- Orient: integer that defines the convention for the plane
|
- CreateZoneDisk(zone_name, Ucen, Vcen, R, Orient)
Returns an instance of the class zone of type disk
after its creation
- zone_name: the name of the zone based on a full disk
- Ucen, Vcen: coordinates of the center of the disk
- R: radius of the disk
- Orient: integer that defines the convention for the plane
|
- CreateZoneDiskWithHole(zone_name, Ucen, Vcen, R, Rint, Orient)
Returns an instance of the class zone of type disk with a hole
after its creation
- zone_name: the name of the zone based on a disk with a hole
- Ucen, Vcen: coordinates of the center of the disk
- R: external radius of the disk
- Rint: internal radius of the disk
- Orient: integer that defines the convention for the plane
|