EllipticalArc3D.getData Method

Parent Object: EllipticalArc3D
Defined in namespace "adsk::core" and the header file is <Core/Geometry/EllipticalArc3D.h>

Description

Gets all of the data defining the elliptical arc.

Syntax

"ellipticalArc3D_var" is a variable referencing an EllipticalArc3D object.

(returnValue, center, normal, majorAxis, majorRadius, minorRadius, startAngle, endAngle) = ellipticalArc3D_var.getData()

#include <Core/Geometry/EllipticalArc3D.h

// Declare the output arguments.
Ptr<Point3D> center;
Ptr<Vector3D> normal;
Ptr<Vector3D> majorAxis;
double majorRadius;
double minorRadius;
double startAngle;
double endAngle;
boolean returnValue = ellipticalArc3D_var->getData(center, normal, majorAxis, majorRadius, minorRadius, startAngle, endAngle);

Return Value

Type Description
boolean Returns true if successful.

Parameters

Name Type Description
center Point3D The output center point of the elliptical arc.
normal Vector3D The output normal vector of the elliptical arc.
majorAxis Vector3D The output major axis of the elliptical arc.
majorRadius double The output major radius of the of the elliptical arc.
minorRadius double The output minor radius of the of the elliptical arc.
startAngle double The output start angle of the elliptical arc in radians, where 0 is along the major axis.
endAngle double The output end angle of the elliptical arc in radians, where 0 is along the major axis.

Version

Introduced in version August 2014