@gltf-transform/functions
Version:
Functions for common glTF modifications, written using the core API
15 lines (14 loc) • 521 B
TypeScript
import { Transform } from '@gltf-transform/core';
/** Options for the {@link unweld} function. */
export interface UnweldOptions {
}
/**
* De-index {@link Primitive}s, disconnecting any shared vertices. This operation will generally
* increase the number of vertices in a mesh, but may be helpful for some geometry operations or
* for creating hard edges.
*
* No options are currently implemented for this function.
*
* @category Transforms
*/
export declare function unweld(_options?: UnweldOptions): Transform;