Ellipse3D.getData Method
Parent Object:
Ellipse3DDefined in namespace "adsk::core" and the header file is <Core/Geometry/Ellipse3D.h>
Description
Gets all of the data defining the ellipse.
Syntax
"ellipse3D_var" is a variable referencing an Ellipse3D object.
(returnValue, center, normal, majorAxis, majorRadius, minorRadius) = ellipse3D_var.getData() |
#include <Core/Geometry/Ellipse3D.h
// Declare the output arguments. Ptr<Point3D> center; Ptr<Vector3D> normal; Ptr<Vector3D> majorAxis; double majorRadius; double minorRadius; boolean returnValue = ellipse3D_var->getData(center, normal, majorAxis, majorRadius, minorRadius);
|
Return Value
| boolean |
Returns true if successful. |
Parameters
| center |
Point3D |
The output center point of the ellipse. |
| normal |
Vector3D |
The output normal vector of the ellipse. |
| majorAxis |
Vector3D |
The output major axis of the ellipse |
| majorRadius |
double |
The output major radius of the of the ellipse. |
| minorRadius |
double |
The output minor radius of the of the ellipse. |
Version
Introduced in version August 2014