Package chunmap.model.coord

Examples of chunmap.model.coord.Coordinate3D


public class Vector {

  private final CPoint point;

  public Vector(double x, double y, double z) {
    point = new Coordinate3D(x, y, z);
  }
View Full Code Here


    double z = 0;
    if (p1.is3D() && p2.is3D())
      z = p2.getZ() - p1.getZ();

    point = new Coordinate3D(x, y, z);
  }
View Full Code Here

TOP

Related Classes of chunmap.model.coord.Coordinate3D

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.