Transform.Combine Method

SFML.Net

TransformCombine Method
Combine the current transform with another one. The result is a transform that is equivalent to applying this followed by transform. Mathematically, it is equivalent to a matrix multiplication.

Namespace: SFML.Graphics
Assembly: sfmlnet-graphics-2 (in sfmlnet-graphics-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public void Combine(
	Transform transform
)
Public Sub Combine ( 
	transform As Transform
)
public:
void Combine(
	Transform transform
)
member Combine : 
        transform : Transform -> unit 

Parameters

transform
Type: SFML.GraphicsTransform
Transform to combine to this transform
See Also