• <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 閱讀(1352) | 評論 (0)  編輯 |

                 摘要:

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

            posted @ 2021-04-06 23:21 eryar 閱讀(681) | 評論 (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 閱讀(4505) | 評論 (0)  編輯 |

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

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

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

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

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

            posted @ 2019-01-17 21:50 eryar 閱讀(1704) | 評論 (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 閱讀(2989) | 評論 (0)  編輯 |

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

            posted @ 2018-08-24 21:12 eryar 閱讀(3114) | 評論 (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 閱讀(2670) | 評論 (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 閱讀(2126) | 評論 (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 閱讀(2254) | 評論 (0)  編輯 |

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

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

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

                 摘要: 用C++來開發管道出圖程序IsoAlgo時,當PCF文件名中包含中文時,讀取文件會失敗。
              閱讀全文

            posted @ 2015-04-14 19:47 eryar 閱讀(3468) | 評論 (0)  編輯 |

                 摘要: Abstract. The Visual Studio Natvis framework lets you customize the way Visual Studio displays native types in debugger variable windows such as the Watch, Locals and Data Tips windows. It supersedes the autoexp.dat file that has been used in earlier versions of Visual Studio and offers XML syntax, better diagnostics, versioning, and multiple file support. The container in OpenCASCADE is difficult for debugging, such as TColStd_Array1OfInteger in the TColStd package, .etc. Use the natvis framewo  閱讀全文

            posted @ 2015-01-31 19:16 eryar 閱讀(3277) | 評論 (1)  編輯 |

                 摘要: Abstract. Tcl/Tk provide a programming system for developing and using graphical user interface(GUI) applications. Tcl stands for “tool command language” and is pronounced “tickle”, is a simple scripting language for controlling the extending applications. The blog use Tcl/Tk to iterate all the files for a given directory, this is useful to some automation work, such as change all the file names for a given directory; add copyright info for the source code files.

            Key Words. Tcl/Tk, Iter  閱讀全文

            posted @ 2015-01-18 12:08 eryar 閱讀(1930) | 評論 (0)  編輯 |

                 摘要: Abstract. There are many drawing files during the ship design or other design process, so somebody want to merge them to one DWG file. The DwgMerger is a AutoCADE plugin developed by AutoCAD .NET, its purpose is to merge all the drawing files, include dwg and dxf format to one drawing paper.

            Key Words. AutoCAD, DWG, DXF, Merger, 合并   閱讀全文

            posted @ 2015-01-15 19:32 eryar 閱讀(3539) | 評論 (3)  編輯 |

                 摘要: 有一天你將破蛹而出,成長得比人們期待的還要美麗。
            但這個過程會很痛,會很辛苦,有時候還會覺得灰心。
            面對著洶涌而來的現實,覺得自己渺小無力。
            但這,也是生命的一部分。做好現在你能做的,然后,一切都會好的。
            我們都將孤獨地長大,不要害怕。

              閱讀全文

            posted @ 2014-10-27 19:48 eryar 閱讀(1991) | 評論 (0)  編輯 |

                 摘要: Debian是OpenCASCADE用于Linux操作系統測試的專用系統。這幾天下載安裝了Debian系統,體驗了一下,感覺還不錯:簡潔,精致。

            解決了這些問題后,Debian用起來感覺還好,還需要慢慢熟悉和適應。下一步準備在Debian上編譯、調試C/C++程序。為編譯OpenCASCADE的Linux版本打下基礎。  閱讀全文

            posted @ 2014-09-29 22:54 eryar 閱讀(1719) | 評論 (0)  編輯 |

                 摘要: Intergraph Stamp.

            Thanks to superman (WuJun).  閱讀全文

            posted @ 2014-07-26 17:36 eryar 閱讀(726) | 評論 (0)  編輯 |

                 摘要: std::ofstream failed because of its file name is not right.  閱讀全文

            posted @ 2014-07-12 15:55 eryar 閱讀(3781) | 評論 (3)  編輯 |

                 摘要: 杭州東站頂。  閱讀全文

            posted @ 2013-09-20 22:50 eryar 閱讀(1667) | 評論 (2)  編輯 |

                 摘要: 18. 只要路是對的,就不怕路遠;

            19. 一個能從別人的觀念來看事情,能了解別人心靈活動的人,永遠不必為自己的前途擔心;

            20. 當一個人先從自己內心開始奮斗,他就是個有價值的人;

            21. 生命對某些人來說是美麗的,這些人的一生都為某個目標而奮斗;

            22. 凡真心嘗試助人者,沒有不幫到自己的。
              閱讀全文

            posted @ 2013-08-19 22:30 eryar 閱讀(2040) | 評論 (0)  編輯 |

                 摘要: 企業應用三維CAD進行產品創新設計已經是一各必然趨勢,三維設計符合人的思維習慣。在二維CAD普及的今天,三維CAD也就成為我國加快實現工業現代化的必然選擇,其對制造業增強產品創新開發能力起到了巨大的推動作用,是制造業信息現代化建設不可或缺的工具。然而目前我國制造業中普及三維CAD還存在許多現實的問題,三維CAD軟件的產業化開發水平遠不如二維CAD軟件。因此,發展具有自主知識產權的三維CAD軟件,打破國外產品的壟斷局面,成為一項非常迫切的任務。  閱讀全文

            posted @ 2013-05-05 22:15 eryar 閱讀(5838) | 評論 (2)  編輯 |

                 摘要: 假如顯示器的分辨率可以趨于無限,
            那么我將用glVertex畫出充滿柔情的弧線和飄逸灑脫的面片。  閱讀全文

            posted @ 2012-12-15 23:30 eryar 閱讀(2015) | 評論 (3)  編輯 |

            posted @ 2012-10-27 21:23 eryar 閱讀(1860) | 評論 (0)  編輯 |

            posted @ 2012-07-12 21:58 eryar 閱讀(518) | 評論 (0)  編輯 |

            posted @ 2012-06-30 20:22 eryar 閱讀(804) | 評論 (0)  編輯 |

            posted @ 2012-05-27 15:55 eryar 閱讀(1758) | 評論 (2)  編輯 |

            posted @ 2012-03-18 13:35 eryar 閱讀(1201) | 評論 (2)  編輯 |

            posted @ 2011-11-20 17:43 eryar 閱讀(712) | 評論 (0)  編輯 |

            亚洲精品无码成人片久久| 亚洲精品无码久久久久sm| 精品久久一区二区三区| 色综合久久中文色婷婷| 欧美激情精品久久久久| 7国产欧美日韩综合天堂中文久久久久 | 精品伊人久久大线蕉色首页| 国产成年无码久久久免费| 久久噜噜电影你懂的| 精品国产乱码久久久久软件| 国产V综合V亚洲欧美久久| 久久综合色之久久综合| 久久久久久午夜成人影院| 久久九九免费高清视频| 精品熟女少妇av免费久久| 色综合久久久久综合99| 久久久久久免费一区二区三区| 亚洲精品国精品久久99热| 久久不射电影网| 午夜天堂精品久久久久| 午夜视频久久久久一区 | 亚洲欧洲日产国码无码久久99| 四虎国产精品免费久久5151 | 伊人色综合久久天天人守人婷 | 久久亚洲国产成人精品性色 | 精品久久无码中文字幕| 中文字幕久久亚洲一区| 国产精品久久久久一区二区三区 | 国产—久久香蕉国产线看观看| 久久久久久久久波多野高潮| 久久亚洲电影| 久久天天躁狠狠躁夜夜av浪潮 | 狠狠色伊人久久精品综合网 | 伊人久久大香线蕉成人| 国产无套内射久久久国产| 国产成人精品免费久久久久| 亚洲午夜久久久久久久久电影网 | 婷婷国产天堂久久综合五月| 久久人搡人人玩人妻精品首页 | 中文精品99久久国产| 日本精品久久久久久久久免费|