openctm是一款開源的三維模型檢視軟體,目前最新版為1.0.3,支援.ctm、.obj、.3ds等多種格式。
2.在vs2010中,建立乙個winform工程,新建乙個窗體,做乙個button。
3.引入命名空間diagnostics。
4.在button的click方法中,使用 process.start();方法呼叫openctm,並同時開啟obj檔案。
**如下:
using system;
using system.collections.generic;
using system.componentmodel;
using system.data;
using system.drawing;
using system.linq;
using system.text;
using system.windows.forms;
using system.diagnostics; //與系統程序互動
namespace mytest
private void button1_click(object sender, eventargs e)}}
效果如圖所示:
Qt中呼叫外部程式開啟檔案
qdesktopservices openurl qurl fromlocalfile filename filename 檔名,如c 新建 microsoft word 文件.doc qurl fromlocalfile 一定要用這個方法,因為檔名或路徑中中文或空格,不然打不開檔案.直接用qurl...
c呼叫c opencv c版本開啟相機方法
一 知識要點 c呼叫c 函式 二 背景 以前工程使用的是c語言開發且工程比較大,而現在的工程使用的是c 編寫的。前者較大,後者較小。雖然說c 能很好的相容c語言,但是在工程龐大的情況下,將c全部改寫成c 也是相當麻煩的,會出現很多很多的無法解析的外部符號。所以最恰當的方法是寫乙個介面,使得c能呼叫c...
C中呼叫C 函式
將 c 函式宣告為 extern c 在你的 c 裡做這個宣告 然後呼叫它 在你的 c 或者 c 裡呼叫 例如 c code extern c void f int void f int i 然後,你可以這樣使用 f c code void f int void cc int i f i 當然,這招...