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