itk-wasm
Version:
High-performance spatial analysis in a web browser, Node.js, and reproducible execution across programming languages and hardware architectures.
22 lines • 654 B
JavaScript
import TransformType from './transform-type.js';
class Transform {
transformType;
numberOfFixedParameters;
numberOfParameters;
name = 'Transform';
inputSpaceName;
outputSpaceName;
parameters;
fixedParameters;
constructor(transformType = new TransformType()) {
this.transformType = transformType;
this.numberOfFixedParameters = 0;
this.numberOfParameters = 0;
this.inputSpaceName = '';
this.outputSpaceName = '';
this.parameters = new Uint8Array(0);
this.fixedParameters = new Uint8Array(0);
}
}
export default Transform;
//# sourceMappingURL=transform.js.map