public Vector2d Rotated(long cos, long sin) { Vector2d vec = this; vec.Rotate(cos, sin); return(vec); }
public void Rotate(long cos, long sin) { _rotation.Rotate(cos, sin); RotationChanged = true; }