Search in sources :

Example 1 with PointCloud

use of com.revolsys.elevation.cloud.PointCloud in project com.revolsys.open by revolsys.

the class PointCloudLayer method setPointCloud.

public void setPointCloud(final PointCloud pointCloud) {
    final PointCloud old = this.pointCloud;
    Property.removeListener(this.pointCloud, this);
    this.pointCloud = pointCloud;
    if (pointCloud == null) {
        setExists(false);
    } else {
        setExists(true);
        Property.addListener(pointCloud, this);
    }
    firePropertyChange("pointCloud", old, this.pointCloud);
}
Also used : PointCloud(com.revolsys.elevation.cloud.PointCloud)

Aggregations

PointCloud (com.revolsys.elevation.cloud.PointCloud)1