local_to_global#

concreteproperties.utils.local_to_global(theta: float, u: float, v: float) tuple[float, float][source]#

Calculates global coorindates.

Determines the global coordinates of the local point (u, v) given local axis angle theta.

Parameters:
  • theta (float) – Angle (in radians) the local axis makes with the horizontal axis (\(-\pi \leq \theta \leq \pi\))

  • u (float) – u-coordinate of the point in the local axis

  • v (float) – v-coordinate of the point in the local axis

Returns:

Global axis coordinates (x, y)

Return type:

tuple[float, float]