Sphere.origin Property
Parent Object:
SphereDefined in namespace "adsk::core" and the header file is <Core/Geometry/Sphere.h>
Description
Gets and sets the origin point (center) of the sphere.
Syntax
"sphere_var" is a variable referencing a Sphere object.
# Get the value of the property. propertyValue = sphere_var.origin
# Set the value of the property. sphere_var.origin = propertyValue
|
"sphere_var" is a variable referencing a Sphere object.
#include <Core/Geometry/Sphere.h>
// Get the value of the property. Ptr<Point3D> propertyValue = sphere_var->origin();
// Set the value of the property, where value_var is a Point3D. bool returnValue = sphere_var->origin(value_var);
|
Property Value
This is a read/write property whose value is a
Point3D.
Version
Introduced in version August 2014