We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7500dbe commit be41863Copy full SHA for be41863
Sources/Rendering/Core/Prop3D/index.js
@@ -238,6 +238,13 @@ function vtkProp3D(publicAPI, model) {
238
return model.properties[mapperInputPort];
239
};
240
241
+ publicAPI.getProperties = () => {
242
+ if (model.properties.length === 0) {
243
+ model.properties[0] = publicAPI.makeProperty?.();
244
+ }
245
+ return model.properties;
246
+ };
247
+
248
publicAPI.setProperty = (firstArg, secondArg) => {
249
// Two options for argument layout:
250
// - (mapperInputPort, property)
0 commit comments