UNPKG

polygonjs-engine

Version:

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

22 lines (21 loc) 829 B
import { BaseSopOperation } from './_Base'; import { DefaultOperationParams } from '../_Base'; import { CoreGroup } from '../../geometry/Group'; import { Vector3 } from 'three/src/math/Vector3'; import { InputCloneMode } from '../../../engine/poly/InputCloneMode'; interface RoundedBoxSopParams extends DefaultOperationParams { size: number; divisions: number; bevel: number; center: Vector3; } export declare class RoundedBoxSopOperation extends BaseSopOperation { static readonly DEFAULT_PARAMS: RoundedBoxSopParams; static readonly INPUT_CLONED_STATE = InputCloneMode.NEVER; static type(): Readonly<'roundedBox'>; private _core_transform; cook(input_contents: CoreGroup[], params: RoundedBoxSopParams): CoreGroup; private _cook_without_input; private _cook_with_input; } export {};