IcosahedronGeometry constructor

IcosahedronGeometry(
  1. num radius,
  2. int detail
)

Implementation

IcosahedronGeometry(num radius, int detail) : super() {
  this.parameters = {"radius": radius, "detail": detail};

  this.fromBufferGeometry(THREE.IcosahedronGeometry(radius, detail));
  this.mergeVertices();
}