Skip to content

Commit 51783f8

Browse files
committed
removed star imports
1 parent 196da68 commit 51783f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+976
-979
lines changed

dist/three-js-blobtree.module.js

Lines changed: 402 additions & 403 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/three-js-blobtree.module.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/blobtree/DifferenceNode.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ export declare class DifferenceNode extends Node {
5252
* Compute the value and/or gradient and/or material
5353
* of the element at position p in space. return computations in res (see below)
5454
*
55-
* @param {THREE.Vector3} p Point where we want to evaluate the primitive field
55+
* @param {Vector3} p Point where we want to evaluate the primitive field
5656
* @param {Object} res Computed values will be stored here. Each values should exist and
5757
* be allocated already.
5858
* @param {number} res.v Value, must be defined
5959
* @param {Material} res.m Material, must be allocated and defined if wanted
60-
* @param {THREE.Vector3} res.g Gradient, must be allocated and defined if wanted
60+
* @param {Vector3} res.g Gradient, must be allocated and defined if wanted
6161
* @param {number=} res.step The next step we can safely walk without missing the iso (0). Mostly used for convergence function or ray marching.
6262
* @param {number=} res.stepOrtho
6363
*/
@@ -67,7 +67,7 @@ export declare class DifferenceNode extends Node {
6767
*
6868
* Trim must be redefined for DifferenceNode since in this node we cannot trim one of the 2 nodes without trimming the other.
6969
*
70-
* @param {THREE.Box3} aabb
70+
* @param {Box3} aabb
7171
* @param {Array.<Element>} trimmed
7272
* @param {Array.<Node>} parents
7373
*/

dist/types/blobtree/Element.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export declare class Element {
4545
*/
4646
computeAABB(): void;
4747
/**
48-
* @return {THREE.Box3} The AABB of this Element (primitive or node). WARNING : call
48+
* @return {Box3} The AABB of this Element (primitive or node). WARNING : call
4949
* isValidAABB before to ensure the current AABB does correspond to the primitive
5050
* settings.
5151
*/
@@ -76,13 +76,13 @@ export declare class Element {
7676
* Compute the value and/or gradient and/or material
7777
* of the element at position p in space. return computations in res (see below)
7878
*
79-
* @param {THREE.Vector3} _p Point where we want to evaluate the primitive field
79+
* @param {Vector3} _p Point where we want to evaluate the primitive field
8080
* @param {ValueResultType} _res
8181
*/
8282
value(_p: any, _res: any): void;
8383
/**
84-
* @param {THREE.Vector3} p The point where we want the numerical gradient
85-
* @param {THREE.Vector3} res The resulting gradient
84+
* @param {Vector3} p The point where we want the numerical gradient
85+
* @param {Vector3} res The resulting gradient
8686
* @param {number} epsilon The step value for the numerical evaluation
8787
*/
8888
numericalGradient: (p: any, res: any, epsilon: any) => void;
@@ -92,13 +92,13 @@ export declare class Element {
9292
* Area objects do provide methods useful when rasterizing, raytracing or polygonizing
9393
* the area (intersections with other areas, minimum level of detail needed to
9494
* capture the feature nicely, etc etc...).
95-
* @returns {Array.<{aabb: THREE.Box3, bv:Area, obj:Primitive}>} The Areas object corresponding to the node/primitive, in an array
95+
* @returns {Array.<{aabb: Box3, bv:Area, obj:Primitive}>} The Areas object corresponding to the node/primitive, in an array
9696
*/
9797
getAreas(): never[];
9898
/**
9999
* @abstract
100100
* This function is called when a point is outside of the potential influence of a primitive/node.
101-
* @param {THREE.Vector3} _p
101+
* @param {Vector3} _p
102102
* @return {number} The next step length to do with respect to this primitive/node
103103
*/
104104
distanceTo(_p: any): void;
@@ -114,7 +114,7 @@ export declare class Element {
114114
* Default behaviour is doing nothing, leaves cannot be sub-trimmed, only nodes.
115115
* Note : only the root can untrim
116116
*
117-
* @param {THREE.Box3} _aabb
117+
* @param {Box3} _aabb
118118
* @param {Array.<Element>} _trimmed Array of trimmed Elements
119119
* @param {Array.<Node>} _parents Array of fathers from which each trimmed element has been removed.
120120
*/

dist/types/blobtree/Material.d.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*
1414
* @param {!Object} params Parameters for the material. As a dictionary to be easily extended later.
1515
*
16-
* @param {THREE.Color?} params.color Base diffuse color for the material.
16+
* @param {Color?} params.color Base diffuse color for the material.
1717
* Defaults to #aaaaaa
1818
*
1919
* @param {number?} params.roughness Roughness for the material.
@@ -22,7 +22,7 @@
2222
* @param {number?} params.metalness Metalness aspect of the material, 1 for metalness, 0 for dielectric.
2323
* Defaults to 0.
2424
*
25-
* @param {THREE.Color?} params.emissive Emissive color for the material.
25+
* @param {Color?} params.emissive Emissive color for the material.
2626
* Defaults to pitch black. (no light emission)
2727
*/
2828
export declare class Material {
@@ -47,13 +47,13 @@ export declare class Material {
4747
*
4848
* @param { !Object } params Parameters for the material.As a dictionary to be easily extended later.
4949
*
50-
* @param { THREE.Color ?} params.color Base diffuse color for the material. Defaults to #aaaaaa
50+
* @param { Color ?} params.color Base diffuse color for the material. Defaults to #aaaaaa
5151
*
5252
* @param { number ?} params.roughness Roughness for the material. Defaults to 0.
5353
*
5454
* @param { number ?} params.metalness Metalness aspect of the material, 1 for metalness, 0 for dielectric. Defaults to 0.
5555
*
56-
* @param { THREE.Color ?} params.emissive Emissive color for the material. Defaults to pitch black. (no light emission)
56+
* @param { Color ?} params.emissive Emissive color for the material. Defaults to pitch black. (no light emission)
5757
*/
5858
constructor(params: any);
5959
toJSON(): {
@@ -75,7 +75,7 @@ export declare class Material {
7575
/**
7676
* @deprecated Use setParams instead
7777
* Set Material parameters at once. DEPRECATED. Use setParams
78-
* @param {THREE.Color!} c Color
78+
* @param {Color!} c Color
7979
* @param {number!} r roughness
8080
* @param {number!} m Metalness
8181
*/
@@ -84,19 +84,19 @@ export declare class Material {
8484
* Set Material parameters (all or just some)
8585
*
8686
* @param {Object} params Parameters for the material. As a dictionary to be easily extended later.
87-
* @param {THREE.Color?} params.color Base diffuse color for the material.
87+
* @param {Color?} params.color Base diffuse color for the material.
8888
* @param {number?} params.roughness Roughness for the material.
8989
* @param {number?} params.metalness Metalness aspect of the material, 1 for metalness, 0 for dielectric.
90-
* @param {THREE.Color?} params.emissive Emissive color for the material.
90+
* @param {Color?} params.emissive Emissive color for the material.
9191
*/
9292
setParams(params: any): void;
93-
/** @return {THREE.Color} */
93+
/** @return {Color} */
9494
getColor(): any;
9595
/** @return {number} */
9696
getRoughness(): any;
9797
/** @return {number} */
9898
getMetalness: () => any;
99-
/** @return {THREE.Color} */
99+
/** @return {Color} */
100100
getEmissive(): any;
101101
equals(m: any): any;
102102
/**

dist/types/blobtree/Material.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/types/blobtree/MaxNode.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export declare class MaxNode extends Node {
3636
/**
3737
* @link Element.value for a complete description
3838
*
39-
* @param {THREE.Vector3} p
39+
* @param {Vector3} p
4040
* @param {ValueResultType} res
4141
*/
4242
value(p: any, res: any): void;

dist/types/blobtree/MinNode.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,14 @@ export declare class MinNode extends Node {
3333
/**
3434
* @link Element.value for a complete description
3535
*
36-
* @param {THREE.Vector3} p
36+
* @param {Vector3} p
3737
* @param {ValueResultType} res
3838
*/
3939
value(p: any, res: any): void;
4040
/**
4141
* @link Element.trim for a complete description.
4242
*
43-
* @param {THREE.Box3} aabb
43+
* @param {Box3} aabb
4444
* @param {Array<Element>} trimmed
4545
* @param {Array<Node>} parents
4646
*/

dist/types/blobtree/RicciNode.d.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ export declare class RicciNode extends Node {
3131
toJSON(): {
3232
ricci_n: any;
3333
children: never[];
34-
/** @type {THREE.Vector3} */
3534
type: string;
3635
};
3736
/**
@@ -47,7 +46,7 @@ export declare class RicciNode extends Node {
4746
/**
4847
* @link Element.value for a complete description
4948
*
50-
* @param {THREE.Vector3} p
49+
* @param {Vector3} p
5150
* @param {ValueResultType} res
5251
*/
5352
value(p: any, res: any): void;

dist/types/blobtree/RicciNode.d.ts.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)