LocationPoint.fromLocationPoint constructor

LocationPoint.fromLocationPoint(
  1. LocationPoint p
)

Implementation

LocationPoint.fromLocationPoint(LocationPoint p) {
  this.location = p.location;
  this.subLocation = p.subLocation;
  this.x = p.x;
  this.y = p.y;
}