Box2D.Common.Vec3.Clone C# (CSharp) Method

Clone() public method

public Clone ( ) : Vec3
return Vec3
        public Vec3 Clone()
        {
            return new Vec3(this);
        }

Usage Example

Esempio n. 1
0
 public Mat33(Vec3 argCol1, Vec3 argCol2, Vec3 argCol3)
 {
     Ex = argCol1.Clone();
     Ey = argCol2.Clone();
     Ez = argCol3.Clone();
 }
All Usage Examples Of Box2D.Common.Vec3::Clone