Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
Desplandis committed Dec 19, 2024
1 parent 7986222 commit 7a56b5f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Core/Geographic/Coordinates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ class Coordinates {
* @param offset - Optional offset into the array. Default is 0.
*/
setFromArray(array: number[], offset: number = 0): this {
console.warn(array);
return this.setFromValues(
array[offset],
array[offset + 1],
Expand All @@ -180,6 +181,7 @@ class Coordinates {
* @param v - The source object.
*/
setFromVector3(v: THREE.Vector3Like): this {
console.warn(v.x, v.y, v.z);
return this.setFromValues(v.x, v.y, v.z);
}

Expand Down

0 comments on commit 7a56b5f

Please sign in to comment.