fromMesh static method
Implementation
static CSG fromMesh(Mesh mesh) {
final transformedGeometry = mesh.geometry!.clone();
transformedGeometry.applyMatrix4(mesh.matrix);
return fromGeometry(transformedGeometry);
}
static CSG fromMesh(Mesh mesh) {
final transformedGeometry = mesh.geometry!.clone();
transformedGeometry.applyMatrix4(mesh.matrix);
return fromGeometry(transformedGeometry);
}