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 6faab07 commit d97f393Copy full SHA for d97f393
python/jupytercad_core/src/stepplugin/model.ts
@@ -56,6 +56,10 @@ export class JupyterCadStepDoc extends JupyterCadDoc {
56
];
57
}
58
59
+ setSource(value: string): void {
60
+ this._source.insert(0, value);
61
+ }
62
+
63
static create(): JupyterCadStepDoc {
64
return new JupyterCadStepDoc();
65
python/jupytercad_core/src/stlplugin/model.ts
@@ -56,6 +56,10 @@ export class JupyterCadStlDoc extends JupyterCadDoc {
static create(): JupyterCadStlDoc {
return new JupyterCadStlDoc();
0 commit comments