Browse Source

Add missing functions

Temdog007 6 years ago
parent
commit
519fe3a30b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/math/SphericalHarmonics3.d.ts

+ 3 - 0
src/math/SphericalHarmonics3.d.ts

@@ -17,5 +17,8 @@ export class SphericalHarmonics3 {
 	fromArray(array: number[]): SphericalHarmonics3;
 	toArray(): number[];
 
+	getAt(normal: Vector3, target: Vector3) : Vector3;
+	getIrradianceAt(normal: Vector3, target: Vector3) : Vector3;
+
 	static getBasisAt(normal: Vector3, shBasis: number[]): void;
 };