fromMesh method

dynamic fromMesh(
  1. dynamic mesh
)

Implementation

fromMesh(mesh) {
  this.fromWireframeGeometry(new WireframeGeometry(mesh.geometry));

  // set colors, maybe

  return this;
}