예제 #1
0
파일: JJVector.cs 프로젝트: bugbit/BARobots
 public JJVector minus(JJVector v, JJVector result)
 {
     result.set(mX - v.x(), mY - v.y(), mT - v.t());
     return(result);
 }
예제 #2
0
파일: JJVector.cs 프로젝트: bugbit/BARobots
        public JJVector plus(JJVector v, JJVector result)
        {
            result.set(mX + v.x(), mY + v.y(), mT + v.t());

            return(result);
        }