CircularArc3dSet(Point3d,
Vector3d, Vector3d, Double, Double, Double)
Method
|
Sets parameters of this circular arc.
Namespace: Teigha.Geometry
Assembly: TD_Mgd (in TD_Mgd.dll) Version:
26.9.0.0
Syntax
public void Set(
Point3d center,
Vector3d normal,
Vector3d referenceVector,
double radius,
double startAngle,
double endAngle
)
Public Sub Set (
center As Point3d,
normal As Vector3d,
referenceVector As Vector3d,
radius As Double,
startAngle As Double,
endAngle As Double
)
public:
void Set(
Point3d center,
Vector3d normal,
Vector3d referenceVector,
double radius,
double startAngle,
double endAngle
)
member Set :
center : Point3d *
normal : Vector3d *
referenceVector : Vector3d *
radius : float *
startAngle : float *
endAngle : float -> unit
Parameters
- center Point3d
- [in] Center of arc.
- normal Vector3d
- [in] Normal vector to the plane on which the circle arc
resides.
- referenceVector Vector3d
- [in] The reference vector defining arc angle 0.
- radius Double
- [in] Radius of this circular arc.
- startAngle Double
- [in] Start angle of the arc.
- endAngle Double
- [in] End angle of the arc (must be greater than
startAngle).
Remarks
startAngle must be
less than endAngle. All angles are expressed in radians.
See Also