Gets or sets whether to place all derived objects at the origin in the destination design or not.
# Get the value of the property.propertyValue = deriveFeature_var.isPlaceObjectsAtOrigin# Set the value of the property.deriveFeature_var.isPlaceObjectsAtOrigin = propertyValue
#include <Fusion/Features/DeriveFeature.h>// Get the value of the property.boolean propertyValue = deriveFeature_var->isPlaceObjectsAtOrigin();// Set the value of the property, where value_var is a boolean.bool returnValue = deriveFeature_var->isPlaceObjectsAtOrigin(value_var);