GrafitiDemo.DemoObject.GetPinchReference C# (CSharp) Method

GetPinchReference() public method

public GetPinchReference ( float &x, float &y, float &size, float &rotation ) : void
x float
y float
size float
rotation float
return void
        public void GetPinchReference(out float x, out float y, out float size, out float rotation)
        {
            x = 0;
            y = 0;
            size = m_targetRadius;
            rotation = 0;
        }