Transform.opBinary

Overload of binary operator * to combine two transforms.

This call is equivalent to:

Transform combined = transform;
combined.combine(rhs);
  1. Transform opBinary(Transform rhs)
    struct Transform
    opBinary
    (
    string op
    )
    if (
    op == "*"
    )
  2. Vextor2f opBinary(Vector2f vector)

Parameters

rhs Transform

the second transform to be combined with the first

Return Value

Type: Transform

New combined transform.

Meta