CSG.Vector4D.AddedWith C# (CSharp) 메소드

AddedWith() 공개 메소드

public AddedWith ( Vector4D b ) : Vector4D
b Vector4D
리턴 Vector4D
        public Vector4D AddedWith(Vector4D b)
        {
            Vector4D added = new Vector4D (this);
            added.Add (b);
            return b;
        }