• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>

            eryar

            PipeCAD - Plant Piping Design Software.
            RvmTranslator - Translate AVEVA RVM to OBJ, glTF, etc.
            posts - 603, comments - 590, trackbacks - 0, articles - 0

            6.Others

            Others, anything can be here.
                 摘要: Licensecc: a C++ software license manager
            Copy protect, limit the usage of your C++ software with a license.  閱讀全文

            posted @ 2023-06-18 13:01 eryar 閱讀(1351) | 評論 (0)  編輯 |

                 摘要:

            PmuReviewer - 工廠模型審查程序  閱讀全文

            posted @ 2021-04-06 23:21 eryar 閱讀(680) | 評論 (0)  編輯 |

                 摘要: Abstract. Python and C++ are in many ways as different as two languages could be: while C++ is usually compiled to machine-code, Python is interpreted. Python's dynamic type system is often cited as the foundation of its flexibility, while in C++ static typing is the cornerstone of its efficiency. C++ has an intricate and difficult compile-time meta-language, while in Python, practically everything happens at runtime.

            Key Words. Qt, Python, Shiboken2, PySide2  閱讀全文

            posted @ 2020-02-24 14:56 eryar 閱讀(4504) | 評論 (0)  編輯 |

                 摘要: 在Ubutun上安裝Nodejs和Express  閱讀全文

            posted @ 2019-07-08 12:10 eryar 閱讀(879) | 評論 (0)  編輯 |

                 摘要: Boost test vs2013 fatal error C1001  閱讀全文

            posted @ 2019-07-06 12:54 eryar 閱讀(1168) | 評論 (0)  編輯 |

                 摘要: QString::toStdString()的內存問題  閱讀全文

            posted @ 2019-01-17 21:50 eryar 閱讀(1703) | 評論 (0)  編輯 |

                 摘要: Consolas是一套等寬字體的字型,屬無襯線字體,由Lucas de Groot設計。
            這套字型使用了微軟的ClearType 字型平滑技術,并隨同Windows Vista、Office 2007及Microsoft Visual Studio中發行,或可在微軟的網站下載。在Windows Vista的6套新字型中,Consolas近似于前版Windows中 的2款內建字型:Lucida Console與Courier New,主要為程序代碼的顯示字型而設計的,特別之處是它的“0”字加入了一斜撇,以方便與字母“O”分辨。  閱讀全文

            posted @ 2019-01-15 16:53 eryar 閱讀(1398) | 評論 (0)  編輯 |

                 摘要: 整個Qt在Windows中都可以通過批處理來編譯,當編譯好Qt后,會生成qmake.exe。 在沒有安裝Qt-VS-Addin的情況下,如何使用別人提供的Qt *.pro項目文件呢? 使用qmake可以直接生成Visual Studio項目文件  閱讀全文

            posted @ 2018-09-30 13:49 eryar 閱讀(2988) | 評論 (0)  編輯 |

                 摘要: 學習CesiumJS開源WebGL庫,及其在BIM方面的應用。  閱讀全文

            posted @ 2018-08-24 21:12 eryar 閱讀(3113) | 評論 (0)  編輯 |

                 摘要: Abstract. QCAD是基于GPL協議的開源CAD軟件,核心功能基于Qt使用C++開發,界面及其交互使用Javascript腳本進行開發。QCAD官方推薦開發其Plugin的方式為使用Javascript腳本的方式,因為QCAD的菜單及其對應的功能全部由Javascript實現。程序有時也需要和C++直接通信,如在QCAD中使用OpenCASCADE。本文主要介紹如何來開發QCAD的插件Plugin,從而能夠對QCAD進行擴展,做一些定制化的功能開發。 Key Words. QCAD Plugin, Javascript, C++, CAD, 3D  閱讀全文

            posted @ 2018-06-21 23:28 eryar 閱讀(2659) | 評論 (0)  編輯 |

                 摘要: 開源二維CAD程序QCAD的編譯說明。  閱讀全文

            posted @ 2018-06-03 20:53 eryar 閱讀(2669) | 評論 (0)  編輯 |

                 摘要: 最近在開發一個自動出圖程序,從PDMS模型中取數據后,經過處理生成AutoCAD的圖紙。其中涉及到一個問題就是如何盡量使程序與AutoCAD低耦合,盡量不使用第三方庫的情況下,實現數據的傳遞。
            最開始想到是用ODA(Open Design Alliance)的DWGdirect庫來直接生成DWG文件,并且PDMS中就是使用這個庫來生成DWG文件的。DWGdirect的用法與AutoCAD .Net的接口名稱基本一致,用法也相同,但是這樣就引入了第三方庫。
            還有一種方法就是使用AutoLisp腳本來生成圖紙。這樣的話,程序只需要生成一個AutoLisp腳本文件,文件中包含創建圖形的命令。AutoLisp腳本與PDMS的PML類似,都需要一個解析執行的環境,即PML依賴PDMS平臺才能運行,AutoLisp依賴AutoCAD平臺。如果使用AutoLisp,程序不依賴DWG相關的第三方庫,只需要生成一個文本文件。決定使用AutoLisp后,還有一個問題,就是如何在啟動AutoCAD能自動加載生成的AutoLisp文件去生成圖紙。  閱讀全文

            posted @ 2017-05-18 21:33 eryar 閱讀(2125) | 評論 (0)  編輯 |

                 摘要: Abstract. Qt’s ActiveX and COM support allows Qt for Windows developers to access and use ActiveX controls and COM objects provided by any ActiveX server in their Qt applications. Make their Qt application available as COM servers, with any number of Qt objects and widgets as COM objects and ActiveX controls. Make OpenSceneGraph to ActiveX controls then you can use it in other place, like IE.

            Key Words. OpenSceneGraph, ActiveX, COM, ActiveQt  閱讀全文

            posted @ 2016-11-11 23:32 eryar 閱讀(2253) | 評論 (0)  編輯 |

                 摘要: Run debug in Windows7 to learn assembly language.  閱讀全文

            posted @ 2016-04-09 17:44 eryar 閱讀(1607) | 評論 (0)  編輯 |

            posted @ 2016-01-01 19:38 eryar 閱讀(1563) | 評論 (7)  編輯 |

            Full 6.Others Archive

            日韩欧美亚洲综合久久影院Ds| 国产精品久久一区二区三区| 国产成人综合久久久久久| 国产成人久久精品二区三区| 久久综合亚洲色HEZYO国产| 18岁日韩内射颜射午夜久久成人| 色婷婷综合久久久久中文一区二区 | 中文字幕无码精品亚洲资源网久久 | 久久久久久国产精品美女| 人妻精品久久久久中文字幕69| 久久91精品国产91久久麻豆| 精品久久久久久久中文字幕| 亚洲综合伊人久久大杳蕉| 中文字幕亚洲综合久久2| 一本久久知道综合久久| 国产精品伊人久久伊人电影| 99精品国产99久久久久久97 | 久久se精品一区精品二区国产| 国色天香久久久久久久小说| 青青青青久久精品国产h| 一本一本久久A久久综合精品| 国产成人无码精品久久久免费| 亚洲伊人久久大香线蕉综合图片| 青青青伊人色综合久久| 久久精品国产亚洲AV无码偷窥| 青青草国产97免久久费观看| 国产国产成人久久精品 | 国产日韩欧美久久| 久久99精品国产自在现线小黄鸭 | 久久精品中文字幕大胸| 久久影院午夜理论片无码 | 国产成人精品综合久久久| 精品无码久久久久久尤物| 狠狠综合久久AV一区二区三区| 久久中文字幕视频、最近更新| 国产午夜精品久久久久九九电影 | 中文国产成人精品久久亚洲精品AⅤ无码精品 | 亚洲AV无码久久精品成人| 一本久久综合亚洲鲁鲁五月天亚洲欧美一区二区 | 久久久久国产精品嫩草影院| 色综合久久天天综线观看|