Given a shape (any shape) in a 2D world where all positions, locations, and centers are two dimensional vectors, should the shape's center be described in local space or world space?
EXAMPLE:
World Space center of a Rectangle: Position: (100, 100); Dimensions: (200, 200); Center: (200, 200);
Local Space center of a Rectangle: Position: (200, 200); Dimensions: (100, 200); Center: (50, 100);
World Space center of a Circle: Position: (100, 100); Dimensions: (50, 50) (diameter); Center: (100, 100);
Local Space center of a Circle: Position: (50, 50); Dimensions: (200, 200); Center: (0, 0);