3mf Exporter - 1st installment

This commit is contained in:
Enrico Turri 2018-02-08 13:26:50 +01:00
parent 6e14e6ef17
commit 33553e1c50
5 changed files with 400 additions and 10 deletions

View file

@ -244,6 +244,9 @@ sub _init_menubar {
$self->_append_menu_item($self->{plater_menu}, "Export plate as AMF...", 'Export current plate as AMF', sub {
$plater->export_amf;
}, undef, 'brick_go.png');
$self->_append_menu_item($self->{plater_menu}, "Export plate as 3MF...", 'Export current plate as 3MF', sub {
$plater->export_3mf;
}, undef, 'brick_go.png');
$self->{object_menu} = $self->{plater}->object_menu;
$self->on_plater_selection_changed(0);