Reign.Video.Abstraction.SoftwareModel.RotateGeometry C# (CSharp) Method

RotateGeometry() public method

public RotateGeometry ( float x, float y, float z ) : void
x float
y float
z float
return void
        public void RotateGeometry(float x, float y, float z)
        {
            foreach (var o in Objects) o.RotateGeometry(x, y, z);
            foreach (var mesh in Meshes) mesh.RotateGeometry(x, y, z);
        }