From 6bafc9a4d62ded25f010afb06e2d9f8478dfe159 Mon Sep 17 00:00:00 2001 From: Tiger Oakes Date: Tue, 20 Mar 2018 15:52:49 -0700 Subject: [PATCH] Updated triangle static methods --- types/three/three-core.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/three/three-core.d.ts b/types/three/three-core.d.ts index 61f97daddd..e7e421b93d 100644 --- a/types/three/three-core.d.ts +++ b/types/three/three-core.d.ts @@ -4185,8 +4185,8 @@ export class Triangle { closestPointToPoint(point: Vector3, target: Vector3): Vector3; equals(triangle: Triangle): boolean; - static normal(a: Vector3, b: Vector3, c: Vector3, target: Vector3): Vector3; - static barycoordFromPoint(point: Vector3, a: Vector3, b: Vector3, c: Vector3, optionalTarget: Vector3): Vector3; + static getNormal(a: Vector3, b: Vector3, c: Vector3, target: Vector3): Vector3; + static getBarycoord(point: Vector3, a: Vector3, b: Vector3, c: Vector3, target: Vector3): Vector3; static containsPoint(point: Vector3, a: Vector3, b: Vector3, c: Vector3): boolean; }