Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2019-06-11 18:08:47 +0300
committerbubnikv <bubnikv@gmail.com>2019-06-11 18:08:47 +0300
commit0bb8ee149e8702fb644a70ab1f3924ff8e6f3d71 (patch)
treec10f7eb2a17a6dad421b739182caae97ce9003d0 /xs
parent5fc465b7e8e5398771e4b6db6043bc84770e5923 (diff)
Sharing TriangleMesh objects between the front end (UI) and back end
(background processing)
Diffstat (limited to 'xs')
-rw-r--r--xs/xsp/Model.xsp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/xsp/Model.xsp b/xs/xsp/Model.xsp
index a1c8890ef..6a2cc6080 100644
--- a/xs/xsp/Model.xsp
+++ b/xs/xsp/Model.xsp
@@ -253,7 +253,7 @@ ModelMaterial::attributes()
Ref<DynamicPrintConfig> config()
%code%{ RETVAL = &THIS->config; %};
Ref<TriangleMesh> mesh()
- %code%{ RETVAL = &THIS->mesh; %};
+ %code%{ RETVAL = &THIS->mesh(); %};
bool modifier()
%code%{ RETVAL = THIS->is_modifier(); %};