CCT.NUI.Core.Point.Adapt C# (CSharp) Method

Adapt() public method

public Adapt ( Point point ) : void
point Point
return void
        public void Adapt(Point point)
        {
            this.X = point.X;
            this.Y = point.Y;
            this.Z = point.Z;
        }