コード例 #1
0
ファイル: RayCollision.cs プロジェクト: qbvbsite/differ-cs
 public void copy_from(RayCollision other)
 {
     ray   = other.ray;
     shape = other.shape;
     start = other.start;
     end   = other.end;
 }
コード例 #2
0
ファイル: RayCollision.cs プロジェクト: qbvbsite/differ-cs
        public RayCollision clone()
        {
            var clone = new RayCollision();

            clone.copy_from(this);

            return(clone);
        }