• <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 閱讀(1405) | 評(píng)論 (0)  編輯 |

                 摘要:

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

            posted @ 2021-04-06 23:21 eryar 閱讀(691) | 評(píng)論 (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 閱讀(4522) | 評(píng)論 (0)  編輯 |

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

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

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

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

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

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

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

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

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

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

                 摘要: 學(xué)習(xí)CesiumJS開源WebGL庫(kù),及其在BIM方面的應(yīng)用。  閱讀全文

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

                 摘要: Abstract. QCAD是基于GPL協(xié)議的開源CAD軟件,核心功能基于Qt使用C++開發(fā),界面及其交互使用Javascript腳本進(jìn)行開發(fā)。QCAD官方推薦開發(fā)其Plugin的方式為使用Javascript腳本的方式,因?yàn)镼CAD的菜單及其對(duì)應(yīng)的功能全部由Javascript實(shí)現(xiàn)。程序有時(shí)也需要和C++直接通信,如在QCAD中使用OpenCASCADE。本文主要介紹如何來(lái)開發(fā)QCAD的插件Plugin,從而能夠?qū)CAD進(jìn)行擴(kuò)展,做一些定制化的功能開發(fā)。 Key Words. QCAD Plugin, Javascript, C++, CAD, 3D  閱讀全文

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

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

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

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

            posted @ 2017-05-18 21:33 eryar 閱讀(2140) | 評(píng)論 (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 閱讀(2260) | 評(píng)論 (0)  編輯 |

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

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

            posted @ 2016-01-01 19:38 eryar 閱讀(1572) | 評(píng)論 (7)  編輯 |

                 摘要: 用C++來(lái)開發(fā)管道出圖程序IsoAlgo時(shí),當(dāng)PCF文件名中包含中文時(shí),讀取文件會(huì)失敗。
              閱讀全文

            posted @ 2015-04-14 19:47 eryar 閱讀(3482) | 評(píng)論 (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 閱讀(3295) | 評(píng)論 (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 閱讀(1937) | 評(píng)論 (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 閱讀(3549) | 評(píng)論 (3)  編輯 |

                 摘要: 有一天你將破蛹而出,成長(zhǎng)得比人們期待的還要美麗。
            但這個(gè)過(guò)程會(huì)很痛,會(huì)很辛苦,有時(shí)候還會(huì)覺得灰心。
            面對(duì)著洶涌而來(lái)的現(xiàn)實(shí),覺得自己渺小無(wú)力。
            但這,也是生命的一部分。做好現(xiàn)在你能做的,然后,一切都會(huì)好的。
            我們都將孤獨(dú)地長(zhǎng)大,不要害怕。

              閱讀全文

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

                 摘要: Debian是OpenCASCADE用于Linux操作系統(tǒng)測(cè)試的專用系統(tǒng)。這幾天下載安裝了Debian系統(tǒng),體驗(yàn)了一下,感覺還不錯(cuò):簡(jiǎn)潔,精致。

            解決了這些問(wèn)題后,Debian用起來(lái)感覺還好,還需要慢慢熟悉和適應(yīng)。下一步準(zhǔn)備在Debian上編譯、調(diào)試C/C++程序。為編譯OpenCASCADE的Linux版本打下基礎(chǔ)。  閱讀全文

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

                 摘要: Intergraph Stamp.

            Thanks to superman (WuJun).  閱讀全文

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

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

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

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

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

                 摘要: 18. 只要路是對(duì)的,就不怕路遠(yuǎn);

            19. 一個(gè)能從別人的觀念來(lái)看事情,能了解別人心靈活動(dòng)的人,永遠(yuǎn)不必為自己的前途擔(dān)心;

            20. 當(dāng)一個(gè)人先從自己內(nèi)心開始奮斗,他就是個(gè)有價(jià)值的人;

            21. 生命對(duì)某些人來(lái)說(shuō)是美麗的,這些人的一生都為某個(gè)目標(biāo)而奮斗;

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

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

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

            posted @ 2013-05-05 22:15 eryar 閱讀(5867) | 評(píng)論 (2)  編輯 |

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

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

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

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

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

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

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

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

            国产精品久久网| 香蕉久久夜色精品升级完成| 亚洲伊人久久综合中文成人网| 伊人色综合久久天天网| 国内精品综合久久久40p| 久久午夜无码鲁丝片| 国产精久久一区二区三区| 国产成人久久精品一区二区三区| 亚洲午夜无码久久久久| 99久久精品免费国产大片| A级毛片无码久久精品免费| 国产精品久久久福利| 色青青草原桃花久久综合| 久久99亚洲网美利坚合众国| 亚洲伊人久久综合中文成人网| 中文字幕无码精品亚洲资源网久久| 久久久久人妻精品一区二区三区| 久久精品国产久精国产| 日韩人妻无码精品久久免费一 | 国产精品狼人久久久久影院| 久久精品极品盛宴观看| 91麻精品国产91久久久久| 人妻精品久久无码区| 伊人久久大香线蕉成人| 久久综合伊人77777| 伊人久久免费视频| 精品免费久久久久久久| 亚洲午夜久久久久久久久久 | 久久线看观看精品香蕉国产| 亚洲国产成人久久综合区| 国产精品熟女福利久久AV| 久久精品国产久精国产| 久久精品国产亚洲一区二区| 色狠狠久久AV五月综合| 综合网日日天干夜夜久久| 久久人人添人人爽添人人片牛牛 | 国产成人精品久久综合| 国产精品美女久久久久久2018| 亚洲婷婷国产精品电影人久久| 久久综合久久综合久久| 久久青青草原综合伊人|