Gets and sets the X coordinate of the point.
# Get the value of the property.propertyValue = point3D_var.x# Set the value of the property.point3D_var.x = propertyValue
#include <Core/Geometry/Point3D.h>// Get the value of the property.double propertyValue = point3D_var->x();// Set the value of the property, where value_var is a double.bool returnValue = point3D_var->x(value_var);