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