• <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

                 摘要:   本文主要描述如何修改FreeCAD的Branding,從而使自己能基于FreeCAD靈活的架構(gòu)快速開發(fā)出自己的應(yīng)用程序。通過修改FreeCAD的Branding甚至啟動(dòng)畫面,從而使程序看上去更像是自己開發(fā)的。  閱讀全文

            posted @ 2016-05-09 22:18 eryar 閱讀(1464) | 評(píng)論 (2)編輯 收藏

                 摘要:   FreeCAD是一個(gè)參數(shù)化的三維造型軟件,主要用于任意大小的實(shí)際模型的設(shè)計(jì)。參數(shù)化的建模方式可以通過修改相關(guān)參數(shù)從而方便地修改你的設(shè)計(jì)。FreeCAD是開源軟件,并提供了便利地自定義方式,也提供了腳本,從而根據(jù)自己的需要去擴(kuò)展功能。FreeCAD是跨平臺(tái)(Windows, Mac和Linux),可以讀寫許多開放的模型文件,如STEP,IGES,STL,SVG,DXF,OBJ,IFC,DAE等。
              如果說學(xué)習(xí)OpenCASCADE可以了解一些幾何內(nèi)核底層的算法,那么學(xué)習(xí)FreeCAD則可以用來實(shí)現(xiàn)一些具體的功能,從而將三維的技術(shù)應(yīng)用到實(shí)際的生活中去,創(chuàng)造出有意義的功能。
            本文詳細(xì)說明如何在Windows平臺(tái)上編譯FreeCAD源碼。如果你已經(jīng)可以正常編譯OpenCASCADE這種開源庫的源碼,那么編譯FreeCAD還是很簡單的。  閱讀全文

            posted @ 2016-05-08 11:07 eryar 閱讀(6925) | 評(píng)論 (0)編輯 收藏

                 摘要:   CPU要讀寫一個(gè)內(nèi)存單元時(shí),必須先要給出這個(gè)內(nèi)存單元的地址,在8086PC中內(nèi)存地址由段地址和偏移地址組成。8086CPU中有一個(gè)DS(Data Segment)寄存器,通常用來存放要訪問數(shù)據(jù)的段地址。
              8086CPU也提供相關(guān)的指令以棧的方式LIFO(Last In First Out后進(jìn)先出)來訪問內(nèi)存空間。這意味著在基于8086CPU編程的時(shí)候,可以將一段內(nèi)存當(dāng)作棧來使用。8086CPU提供入棧和出棧的指令:push和pop。比如push ax表示將寄存器AX中的數(shù)據(jù)入棧;pop AX表示從棧頂取出數(shù)據(jù)送入AX。  閱讀全文

            posted @ 2016-05-02 23:14 eryar 閱讀(1170) | 評(píng)論 (0)編輯 收藏

                 摘要: Assembly Loop.  閱讀全文

            posted @ 2016-04-27 22:01 eryar 閱讀(1281) | 評(píng)論 (0)編輯 收藏

                 摘要: The IsoAlgo means the Piping Isometric Drawing Algorithm which can be used to generate the isometrics for pipeline. It reads Piping Component File(PCF) and generates the piping isometric drawing in DXF format.   閱讀全文

            posted @ 2016-04-25 22:28 eryar 閱讀(1085) | 評(píng)論 (0)編輯 收藏

                 摘要: 匯編程序輸出字符到窗口。  閱讀全文

            posted @ 2016-04-16 18:59 eryar 閱讀(1502) | 評(píng)論 (0)編輯 收藏

                 摘要: 以前都是在Debug程序中寫一些指令來測試,現(xiàn)在可以開始編寫完整的匯編語言程序,用編譯和連接程序?qū)R編代碼編譯連接成可執(zhí)行程序。對于從TC2.0學(xué)習(xí)C語言的人來說,編譯連接匯編代碼與C代碼很相似,有點(diǎn)親切感。都要經(jīng)歷編寫源碼,然后編譯源碼生成目標(biāo)OBJ文件;再通過連接將OBJ連接成可執(zhí)行程序。  閱讀全文

            posted @ 2016-04-13 23:31 eryar 閱讀(1382) | 評(píng)論 (2)編輯 收藏

                 摘要: 8086CPU在訪問內(nèi)存時(shí)要由相關(guān)部件提供內(nèi)存單元的段地址和偏移地址,送入地址加法器合成物理地址。段地址在8086CPU的段寄存器中存放,8086CPU有4個(gè)段寄存器:CS,DS,SS,ES。

            CS為Code Segment,代碼段寄存器,結(jié)合指令指針寄存器IP(Instruction Pointer)來確定要執(zhí)行的下一條指令的內(nèi)存地址;

            DS為Data Segment,數(shù)據(jù)段寄存器;

            SS為Stack Segment,棧段寄存器;

            ES為Extra Segment,附加寄存器;
              閱讀全文

            posted @ 2016-04-12 23:49 eryar 閱讀(1212) | 評(píng)論 (0)編輯 收藏

                 摘要: CPU 指令寄存器。  閱讀全文

            posted @ 2016-04-10 23:56 eryar 閱讀(1660) | 評(píng)論 (1)編輯 收藏

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

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

            posted @ 2016-03-28 22:24 eryar 閱讀(2939) | 評(píng)論 (30)編輯 收藏

            posted @ 2016-03-27 23:34 eryar 閱讀(1501) | 評(píng)論 (2)編輯 收藏

                 摘要: Abstract. Today most 3D engineering model data are save to 3D PDF files. Universal 3D(U3D) along side Product Representation Compact(PRC), U3D is the historical foundation used to embed 3D interactive data and models into a PDF file. But PRC is now the preferred and most feature-rich method to embed 3D data into a PDF file. So the paper is focus on to translate OpenCASCADE geometry data to 3D PDF by embedding PRC file.

            Key Words. PDF 3D, OpenCASCADE, U3D, PRC, libharu  閱讀全文

            posted @ 2016-03-24 23:16 eryar 閱讀(3858) | 評(píng)論 (3)編輯 收藏

                 摘要: The Portable Document Format(PDF) is a file format used to present documents in a manner independent of application software, hardware, and operating system.

            RVM file is used in AVEVA Review to visualize the plant design model. RvmTranslator can translate RVM file to STEP, IGES, STL, OBJ, now experiment to translate RVM model to 3D PDF inspired by Siddharth Manek:

            RVM, IGES, STEP, STL, OBJ, 3D PDF  閱讀全文

            posted @ 2016-03-19 14:34 eryar 閱讀(2249) | 評(píng)論 (0)編輯 收藏

                 摘要: Abstract. In modeling, it is often required to approximate or interpolate points to curves and surfaces. In interpolation, the process is complete when the curve or surface passes through all the points; in approximation, when it is as close to these points as possible. The paper is the translation of the OpenCASCADE Modeling Data user guide.

            Key Words. Interpolation, Approximation, Fitting  閱讀全文

            posted @ 2016-03-17 23:10 eryar 閱讀(2737) | 評(píng)論 (1)編輯 收藏

            列出全部內(nèi)容
            共41頁: First 17 18 19 20 21 22 23 24 25 Last 
            久久人人爽人爽人人爽av| 久久受www免费人成_看片中文 | 久久成人国产精品一区二区| 国产女人aaa级久久久级| 日本国产精品久久| 亚洲人成网亚洲欧洲无码久久| 99久久人妻无码精品系列蜜桃| 久久久久国产| 99久久人妻无码精品系列| 亚洲国产成人久久精品99| 久久久久成人精品无码中文字幕| 7国产欧美日韩综合天堂中文久久久久| 久久九色综合九色99伊人| 综合人妻久久一区二区精品| 久久国产精品国语对白| 亚洲国产精品无码久久SM| 久久国产福利免费| 国产精品久久久久AV福利动漫| 日本欧美国产精品第一页久久| 狠狠色丁香久久婷婷综合五月 | 香蕉久久夜色精品国产尤物| 国产AV影片久久久久久| 亚洲精品乱码久久久久久久久久久久| 99热热久久这里只有精品68| 人妻无码中文久久久久专区| 亚洲欧美成人久久综合中文网| 久久精品国产半推半就| 亚洲精品国精品久久99热一| 性做久久久久久久久久久| 久久精品国产亚洲5555| 国产成人精品综合久久久| 久久96国产精品久久久| 伊人久久大香线蕉AV色婷婷色| 四虎影视久久久免费观看| 久久国产免费直播| 久久天天躁狠狠躁夜夜不卡| 国产精品无码久久四虎| 91精品国产色综久久| WWW婷婷AV久久久影片| 午夜久久久久久禁播电影| 成人久久免费网站|