- point (x: Length, y: Length, z:
Length): Point
Creates a point from its three coordinates. Values or parameter names
can be used to pass the arguments.
Example:
Geometrical Set.1\Point.1 = point(10mm,10mm,10mm)
Specifying parameter names:
Geometrical Set.1\Point.4 = point(0mm,L3,L1)
- pointbetween (pt1: Point, pt2: Point, ratio:
Real, orientation: Boolean): Point
Creates a point between another two points. If true is specified in the
fourth argument, the third parameter is the ratio of the distance
pt1-new point to the pt1-pt2 distance. If false is
specified in the fourth argument, the ratio expresses the distance
pt2-new point to the pt1-pt2 distance (to create a point at the middle
between pt1 and pt2, specify a ratio of 0.5).
Example:
Geometrical Set.1\Point.5 = pointbetween (Geometrical Set.1\Point.1,
Geometrical Set.1\Point.2, 0.6, true)
- pointoncurve (crv: Curve, pt: Point,
distance: Length, orientation: Boolean): Point
Creates a point on a curve. The point is to be created at a given
curvilinear distance from a reference point specified in the
second argument. The boolean specified in the fourth argument allows
you to reverse the direction in which the point is to be created. If
the point specified in the second argument is not on the curve, the
projection of this point onto the curve becomes the actual reference
point.
Example:
Geometrical Set.1\Point.6 = pointoncurve
(Geometrical Set.1\Spline.1, Geometrical Set.1\Point.5, 5mm, true)
- pointoncurveRatio (crv: Curve, pt: Point,
ratio: Real, orientation: Boolean): Point
Creates a point on a curve. The location of the point to be created is
determined by the real which is specified in the third argument. This
real is the ratio of the distance [point to be created > reference
point] to the distance [point to be created > curve extremity]. The
boolean specified in the fourth argument allows you to reverse the
direction in which the point is to be created. If the point specified
in the second argument is not on the curve, the projection of this
point onto the curve becomes the actual reference point.
Example:
Geometrical Set.1\Point.7 = pointoncurveRatio
(Geometrical Set.1\Spline.1,Geometrical Set.1\Point.3, 0.4,true)
Example:
Geometrical Set.1\Point.8 = pointonplane
(Geometrical Set.1\Plane.1,Geometrical Set.1\Point.1, 10mm,10mm)
Example:
Geometrical Set.1\Point.9 = pointonsurface
(Geometrical Set.1\Extrude.1,Geometrical Set.1\Point.3,
direction (Geometrical Set.1\Line.1),10mm)
Example:
Geometrical Set.1\Point.10 = circle (Geometrical Set.1\Circle.1)
Example:
Geometrical Set.1\Point.11 = pointtangent
(Geometrical Set.1\Spline.1, direction (`yz plane`))
Example:
Geometrical Set.1\Point.2 = extremum
(`Geometrical Set.1\Circle.1` ,direction (`xy plane`) ,FALSE,
direction (`xy plane` ),TRUE, direction (`xy plane` ),TRUE)
- centerofgravity (Body,...): Point
Constructs the center of gravity of a solid (i.e. a PartBody type
feature).
In case of a face, the center of gravity of the equivalent volume is
computed with a unit thickness. Whereas, for a profile, it is computed
with a unit section swept along the boundary.
Example:
Geometrical Set.1\Point.12 = centerofgravity (PartBody)
Example:
Geometrical Set.1\Point.13 = curvaturecenter
(Geometrical Set.1\Circle.1, Geometrical Set.1\Point.6)