Interface LandmarksFactory


public interface LandmarksFactory
A factory that instantiates either user defined landmarks or standard anthropometric feature points.
  • Method Details

    • createLandmark

      static Landmark createLandmark(int id, javax.vecmath.Point3d position, String name, String description)
      Creates an instance of user-defined landmark.
      Parameters:
      id - A unique ID
      position - 3D position
      name - optional short name
      description - optional description
      Returns:
      a user-defined landmark.
    • createFeaturePoint

      static Landmark createFeaturePoint(int id, javax.vecmath.Point3d position)
      Creates an instance of standard anthropometric feature point.
      Parameters:
      id - A unique ID
      position - 3D position
    • createFeaturePointByCode

      static Landmark createFeaturePointByCode(String code, javax.vecmath.Point3d position)
      Creates an instance of standard anthropometric feature point.
      Parameters:
      code - Code of the feature point
      position - 3D position
    • createFeaturePointByName

      static Landmark createFeaturePointByName(String name, javax.vecmath.Point3d position)
      Creates an instance of standard anthropometric feature point.
      Parameters:
      name - Name of the feature point
      position - 3D position