AnyCAD Rapid API 2023
Help you to create a better world!
|
Public 成员函数 | |
GCirc () | |
GCirc (GAx2 theA2, double theRadius) | |
void | SetAxis (GAx1 theA1) |
void | SetLocation (GPnt theP) |
void | SetPosition (GAx2 theA2) |
void | SetRadius (double theRadius) |
double | Area () |
GAx1 | Axis () |
double | Length () |
GPnt | Location () |
GAx2 | Position () |
double | Radius () |
GAx1 | XAxis () |
GAx1 | YAxis () |
double | Distance (GPnt theP) |
double | SquareDistance (GPnt theP) |
boolean | Contains (GPnt theP, double theLinearTolerance) |
void | Mirror (GPnt theP) |
GCirc | Mirrored (GPnt theP) |
void | Mirror (GAx1 theA1) |
GCirc | Mirrored (GAx1 theA1) |
void | Mirror (GAx2 theA2) |
GCirc | Mirrored (GAx2 theA2) |
void | Rotate (GAx1 theA1, double theAng) |
GCirc | Rotated (GAx1 theA1, double theAng) |
void | Scale (GPnt theP, double theS) |
GCirc | Scaled (GPnt theP, double theS) |
void | Transform (GTrsf theT) |
GCirc | Transformed (GTrsf theT) |
void | Translate (GVec theV) |
GCirc | Translated (GVec theV) |
void | Translate (GPnt theP1, GPnt theP2) |
GCirc | Translated (GPnt theP1, GPnt theP2) |
Describes a circle in 3D space. A circle is defined by its radius and positioned in space with a coordinate system (a gp_Ax2 object) as follows: - the origin of the coordinate system is the center of the circle, and - the origin, "X Direction" and "Y Direction" of the coordinate system define the plane of the circle. This positioning coordinate system is the "local coordinate system" of the circle. Its "main Direction" gives the normal vector to the plane of the circle. The "main Axis" of the coordinate system is referred to as the "Axis" of the circle. Note: when a gp_Circ circle is converted into a Geom_Circle circle, some implicit properties of the circle are used explicitly: - the "main Direction" of the local coordinate system gives an implicit orientation to the circle (and defines its trigonometric sense), - this orientation corresponds to the direction in which parameter values increase, - the starting point for parameterization is that of the "X Axis" of the local coordinate system (i.e. the "X Axis" of the circle). See Also gce_MakeCirc which provides functions for more complex circle constructions Geom_Circle which provides additional functions for constructing circles and works, in particular, with the parametric equations of circles
GCirc.GCirc | ( | ) |
Creates an indefinite circle.
GCirc.GCirc | ( | GAx2 | theA2, |
double | theRadius | ||
) |
A2 locates the circle and gives its orientation in 3D space. Warnings : It is not forbidden to create a circle with theRadius = 0.0 Raises ConstructionError if theRadius < 0.0
double GCirc.Area | ( | ) |
Computes the area of the circle.
GAx1 GCirc.Axis | ( | ) |
Returns the main axis of the circle. It is the axis perpendicular to the plane of the circle, passing through the "Location" point (center) of the circle.
boolean GCirc.Contains | ( | GPnt | theP, |
double | theLinearTolerance | ||
) |
Returns True if the point theP is on the circumference. The distance between <me> and <theP> must be lower or equal to theLinearTolerance.
double GCirc.Distance | ( | GPnt | theP | ) |
Computes the minimum of distance between the point theP and any point on the circumference of the circle.
double GCirc.Length | ( | ) |
Computes the circumference of the circle.
GPnt GCirc.Location | ( | ) |
Returns the center of the circle. It is the "Location" point of the local coordinate system of the circle
Performs the symmetrical transformation of a circle with respect to an axis placement which is the axis of the symmetry.
Performs the symmetrical transformation of a circle with respect to a plane. The axis placement theA2 locates the plane of the of the symmetry : (Location, XDirection, YDirection).
Performs the symmetrical transformation of a circle with respect to the point theP which is the center of the symmetry.
GAx2 GCirc.Position | ( | ) |
Returns the position of the circle. It is the local coordinate system of the circle.
double GCirc.Radius | ( | ) |
Returns the radius of this circle.
Rotates a circle. theA1 is the axis of the rotation. theAng is the angular value of the rotation in radians.
Scales a circle. theS is the scaling value. Warnings : If theS is negative the radius stay positive but the "XAxis" and the "YAxis" are reversed as for an ellipse.
void GCirc.SetAxis | ( | GAx1 | theA1 | ) |
Changes the main axis of the circle. It is the axis perpendicular to the plane of the circle. Raises ConstructionError if the direction of theA1 is parallel to the "XAxis" of the circle.
void GCirc.SetLocation | ( | GPnt | theP | ) |
Changes the "Location" point (center) of the circle.
void GCirc.SetPosition | ( | GAx2 | theA2 | ) |
Changes the position of the circle.
void GCirc.SetRadius | ( | double | theRadius | ) |
Modifies the radius of this circle. Warning. This class does not prevent the creation of a circle where theRadius is null. Exceptions Standard_ConstructionError if theRadius is negative.
double GCirc.SquareDistance | ( | GPnt | theP | ) |
Computes the square distance between <me> and the point theP.
Transforms a circle with the transformation theT from class Trsf.
Translates a circle from the point theP1 to the point theP2.
Translates a circle in the direction of the vector theV. The magnitude of the translation is the vector's magnitude.
GAx1 GCirc.XAxis | ( | ) |
Returns the "XAxis" of the circle. This axis is perpendicular to the axis of the conic. This axis and the "Yaxis" define the plane of the conic.
GAx1 GCirc.YAxis | ( | ) |
Returns the "YAxis" of the circle. This axis and the "Xaxis" define the plane of the conic. The "YAxis" is perpendicular to the "Xaxis".