16 lines
311 B
JavaScript
16 lines
311 B
JavaScript
export class Vertex {
|
|
|
|
constructor({
|
|
position = [0, 0, 0],
|
|
texcoords = [0, 0],
|
|
normal = [0, 0, 0],
|
|
tangent = [0, 0, 0],
|
|
} = {}) {
|
|
this.position = position;
|
|
this.texcoords = texcoords;
|
|
this.normal = normal;
|
|
this.tangent = tangent;
|
|
}
|
|
|
|
}
|