Add() public method

public Add ( Vector4D b ) : void
b Vector4D
return void
Example #1
0
        public Vector4D AddedWith(Vector4D b)
        {
            Vector4D added = new Vector4D(this);

            added.Add(b);
            return(b);
        }
Example #2
0
 public Vector4D AddedWith(Vector4D b)
 {
     Vector4D added = new Vector4D (this);
     added.Add (b);
     return b;
 }