API Documentation > Interfaces > Interface ArcDescriptor
Interface ArcDescriptor

package com.ptc.pfc.pfcGeometry;

public interface
ArcDescriptor
extends
com.ptc.pfc.pfcGeometry.CurveDescriptor


Description
A data object representing the geometry of an arc entity.
Methods Inherited from Interface com.ptc.pfc.pfcGeometry.CurveDescriptor :
Method Summary
Get method for attribute "Center"
The center of the arc
double
Get method for attribute "EndAngle"
The angular parameter of the ending point
double
Get method for attribute "Radius"
The radius of the arc
double
Get method for attribute "StartAngle"
The angular parameter of the starting point
Get method for attribute "Vector1"
The first vector that defines the plane of the arc
Get method for attribute "Vector2"
The second vector that defines the plane of the arc
void
Set method for attribute "Center"
The center of the arc
void
SetEndAngle (double value)
Set method for attribute "EndAngle"
The angular parameter of the ending point
void
SetRadius (double value)
Set method for attribute "Radius"
The radius of the arc
void
SetStartAngle (double value)
Set method for attribute "StartAngle"
The angular parameter of the starting point
void
Set method for attribute "Vector1"
The first vector that defines the plane of the arc
void
Set method for attribute "Vector2"
The second vector that defines the plane of the arc
Method Detail
GetVector1
GetVector1
()
SetVector1
void
SetVector1
(Vector3D value)
The first vector that defines the plane of the arc
GetVector2
GetVector2
()
SetVector2
void
SetVector2
(Vector3D value)
The second vector that defines the plane of the arc
GetCenter
GetCenter
()
SetCenter
void
SetCenter
(Point3D value)
The center of the arc
GetStartAngle
double
GetStartAngle
()
SetStartAngle
void
SetStartAngle
(double value)
The angular parameter of the starting point
GetEndAngle
double
GetEndAngle
()
SetEndAngle
void
SetEndAngle
(double value)
The angular parameter of the ending point
GetRadius
double
GetRadius
()
SetRadius
void
SetRadius
(double value)
The radius of the arc
Was this helpful?