Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "add BufferGeometry.setIndex() and PlaneBufferGeometry" #21

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions facade/src/main/scala/org/denigma/threejs/threejs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,6 @@ class BufferGeometry extends Geometry {
def merge(): Unit = js.native
def normalizeNormals(): Unit = js.native
def reorderBuffers(indexBuffer: Double, indexMap: js.Array[Double], vertexCount: Double): Unit = js.native
def setIndex( index:js.Array[Int] ): Unit = js.native
override def clone(): BufferGeometry = js.native
}

Expand Down Expand Up @@ -2872,13 +2871,6 @@ class PlaneGeometry(var width: Double, var height: Double, var widthSegments: Do
var parameters: js.Any = js.native
}

@js.native
@JSName("THREE.PlaneBufferGeometry")
class PlaneBufferGeometry extends Geometry {
def this(width: Double, height: Double, widthSegments: Double = js.native, heightSegments: Double = js.native) = this()
var parameters: js.Any = js.native
}

@js.native
@JSName("THREE.PolyhedronGeometry")
class PolyhedronGeometry extends Geometry {
Expand Down