Gets and sets the center axis (along the length) of the cone that defines its normal direction.
# Get the value of the property.propertyValue = cone_var.axis# Set the value of the property.cone_var.axis = propertyValue
#include <Core/Geometry/Cone.h>// Get the value of the property.Ptr<Vector3D> propertyValue = cone_var->axis();// Set the value of the property, where value_var is a Vector3D.bool returnValue = cone_var->axis(value_var);