@awayjs/stage
Version:
Stage for AwayJS
41 lines (34 loc) • 1.14 kB
text/typescript
import { AttributesBuffer } from './AttributesBuffer';
import { AttributesView } from './AttributesView';
export class Float2Attributes extends AttributesView {
public static assetType: string = '[attributes Float2Attributes]';
/**
*
* @returns {string}
*/
public get assetType(): string {
return Float2Attributes.assetType;
}
/**
*
*/
constructor(length?: number);
constructor(attributesBuffer?: AttributesBuffer);
constructor(attributesBufferLength?: any) {
super(Float32Array, 2, attributesBufferLength);
}
public set(array: Array<number>, offset?: number);
public set(typedArray: Float32Array, offset?: number);
public set(values: any, offset: number = 0): void {
super.set(values, offset);
}
public get(count: number, offset: number = 0): Float32Array {
return <Float32Array> super.get(count, offset);
}
public _internalClone(attributesBuffer: AttributesBuffer): Float2Attributes {
return (this._cloneCache = new Float2Attributes(attributesBuffer));
}
public clone(attributesBuffer: AttributesBuffer = null): Float2Attributes {
return <Float2Attributes> super.clone(attributesBuffer);
}
}