UNPKG

@polygonjs/polygonjs

Version:

node-based WebGL 3D engine https://polygonjs.com

19 lines (18 loc) 685 B
import { BaseSopOperation } from './_Base'; import { CoreGroup } from '../../../core/geometry/Group'; import { DefaultOperationParams } from '../../../core/operations/_Base'; interface RestAttributesSopParams extends DefaultOperationParams { tposition: boolean; position: string; restP: string; tnormal: boolean; normal: string; restN: string; } export declare class RestAttributesSopOperation extends BaseSopOperation { static readonly DEFAULT_PARAMS: RestAttributesSopParams; static type(): Readonly<'restAttributes'>; cook(input_contents: CoreGroup[], params: RestAttributesSopParams): CoreGroup; private _create_rest_attribute; } export {};