@pilotlab/lux-types
Version:
A luxurious user experience framework, developed by your friends at Pilot.
23 lines (16 loc) • 697 B
text/typescript
import { DataType, Attribute, AttributeCollection } from '@pilotlab/lux-attributes';
export class Matrix2 extends Attribute<AttributeCollection> {
constructor(x?:number, y?:number, z?:number) {
super('Matrix2', null, DataType.COLLECTION, null, true);
}
} // End of class
export class Matrix3 extends Attribute<AttributeCollection> {
constructor(x?:number, y?:number, z?:number) {
super('Matrix3', null, DataType.COLLECTION, null, true);
}
} // End of class
export class Matrix4 extends Attribute<AttributeCollection> {
constructor(x?:number, y?:number, z?:number) {
super('Matrix4', null, DataType.COLLECTION, null, true);
}
} // End of class