Circle3D.getData Method

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

Description

Gets all of the data defining the circle.

Syntax

"circle3D_var" is a variable referencing a Circle3D object.

(returnValue, center, normal, radius) = circle3D_var.getData()

#include <Core/Geometry/Circle3D.h

// Declare the output arguments.
Ptr<Point3D> center;
Ptr<Vector3D> normal;
double radius;
boolean returnValue = circle3D_var->getData(center, normal, radius);

Return Value

Type Description
boolean Returns true if successful

Parameters

Name Type Description
center Point3D The output center point of the circle.
normal Vector3D The output normal vector.
radius double The output radius of the circle.

Samples

Name Description
Get Circle and Arc Data from Edge API Sample Display the arc and circle geometric information from a selected circular edge.

Version

Introduced in version August 2014