How to use the PointCloud function from three

Find comprehensive JavaScript three.PointCloud code examples handpicked from public code repositorys.

85
86
87
88
89
90
91
92
93
94

// points
var pointCloudMaterial = new THREE.PointCloudMaterial({
  size: 0.3
});
var pointCloud = new THREE.PointCloud(this.points, pointCloudMaterial);

if (this.parameters.points) {
  group.add(pointCloud);
}
fork icon57
star icon254
watch icon10

79
80
81
82
83
84
85
86
87
88
        });
         
        particles = new THREE.PointCloud(geometry, gMaterial);
        scene.add(particles);
        
        particles = new THREE.PointCloud(geometry, hMaterial);
        scene.add(particles);
        
        console.log("LSPM Born");
}
fork icon0
star icon1
watch icon2

+ 7 other calls in file

Other functions in three

Sorted by popularity

function icon

three.Vector3 is the most popular function in three (22341 examples)