I'm trying to automate the 'overhangs generation' for 3Dprinting, with a given STL and meshmixer software, I'm currently able to use 'test.py' successfully with a previously opened meshmixer, it properly cuts the bunny model, (source: https://github.com/meshmixer/mm-api)
but i'm struggling with the doc to be able to modify script and 'automatically generate overhangs':
trying to find help into this doc: https://github.com/meshmixer/mm-api/blob/master/distrib/python/StoredCommands.h
#coding: utf-8
#for python 2.7 (32bits) and autodesk meshmixer 3.0 (3.5 seems to work not so bad)
# please note that you need to have meshmixer software launched, and import 'bunny' model first
import os, subprocess, shutil, time
import mmapi from mmRemote import *;
#initialize connection
remote = mmRemote(); remote.connect();
#construct commands to run
cmd = mmapi.StoredCommands()
cmd.AppendBeginToolCommand("overhangs")
remote.runCommand(cmd); # execute commands
cmd.AppendCompleteToolCommand("accept")
remote.runCommand(cmd); # execute commands
remote.shutdown();
print("done.")
thx by advance for any help
okay: I find a way with the following:
adding a path pointing to the python package 'mm' for python2
thanks to: https://drive.google.com/drive/folders/1dIJXIhTvk93as15j-DUMJtwE8P_eyGkM (or build it by yourself)
then
(Actually, it's in the 'examples' folder..)