Matrix3x2d.transformPosition

Transform/multiply the given 2D-vector, as if it was a 3D-vector with z=1, by this matrix and store the result in <code>dest</code>. <p> The given 2D-vector is treated as a 3D-vector with its z-component being 1.0, so it will represent a position/location in 2D-space rather than a direction. <p> In order to store the result in the same vector, use {@link #transformPosition(Vector2d)}.

@see #transformPosition(Vector2d) @see #transform(Vector3d, Vector3d)

@param v the vector to transform @param dest will hold the result @return dest

  1. Vector2d transformPosition(Vector2d v)
  2. Vector2d transformPosition(Vector2d v, Vector2d dest)
    struct Matrix3x2d
    transformPosition
  3. Vector2d transformPosition(double x, double y, Vector2d dest)

Meta