Skip to content

Commit

Permalink
fix definition file
Browse files Browse the repository at this point in the history
  • Loading branch information
LCluber committed Jun 13, 2021
1 parent 9fa7bf4 commit 58e545c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 33 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Version 0.5.12 (June 13th 2021)
-----------------------------
* Fix duplicate identifier in definitions file

Version 0.5.11 (May 24th 2021)
-----------------------------
* Delete Dom dependency
Expand Down
35 changes: 3 additions & 32 deletions dist/roostr.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
* http://roostrjs.lcluber.com
*/
import { Vector3, Matrix4x3, Matrix4x4 } from '@lcluber/type6js';

export declare class Camera {
viewMatrix: Matrix4x3;
projectionMatrix: Matrix4x4;
Expand Down Expand Up @@ -153,9 +154,6 @@ export declare class VWing extends BasicMesh {





import { Matrix4x3 } from '@lcluber/type6js';
export interface IGeometry {
vertices: number[] | null;
indices: number[] | null;
Expand Down Expand Up @@ -224,7 +222,6 @@ export interface IFlatLights {
direction: number[];
type: number[];
}
import { Vector3 } from '@lcluber/type6js';

export declare class DirectionalLight {
position: Vector3;
Expand All @@ -246,7 +243,6 @@ export declare class PointLight extends DirectionalLight {
setLinearAttenuation(): void;
setQuadraticAttenuation(): void;
}
import { Vector3 } from '@lcluber/type6js';

export declare class SpotLight extends PointLight {
cutoff: number;
Expand All @@ -257,7 +253,7 @@ export declare class SpotLight extends PointLight {
setExponent(): void;
setDirection(): void;
}
import { Vector3 } from '@lcluber/type6js';


export declare class Material {
ambient: Vector3;
Expand All @@ -267,9 +263,6 @@ export declare class Material {
uniforms: IMaterialUniforms;
constructor();
}
import { Matrix4x3 } from '@lcluber/type6js';





Expand Down Expand Up @@ -374,28 +367,6 @@ export declare class SceneRenderer {
}
























export declare class Lights {
directionals: DirectionalLight[];
points: PointLight[];
Expand Down Expand Up @@ -438,7 +409,7 @@ export declare class Scene {
private computeWorldMatrices;
private renderBlended;
}
import { Matrix4x3 } from '@lcluber/type6js';

export declare class SceneGraph {
model: Array<Matrix4x3>;
nbModel: number;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lcluber/roostrjs",
"version": "0.5.11",
"version": "0.5.12",
"description": "WebGL 3D engine written in TypeScript",
"keywords": [
"WebGL 3D engine"
Expand Down

0 comments on commit 58e545c

Please sign in to comment.