• <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靈活的架構快速開發出自己的應用程序。通過修改FreeCAD的Branding甚至啟動畫面,從而使程序看上去更像是自己開發的。  閱讀全文

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

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

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

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

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

                 摘要: Assembly Loop.  閱讀全文

            posted @ 2016-04-27 22:01 eryar 閱讀(1281) | 評論 (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) | 評論 (0)編輯 收藏

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

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

                 摘要: 以前都是在Debug程序中寫一些指令來測試,現在可以開始編寫完整的匯編語言程序,用編譯和連接程序將匯編代碼編譯連接成可執行程序。對于從TC2.0學習C語言的人來說,編譯連接匯編代碼與C代碼很相似,有點親切感。都要經歷編寫源碼,然后編譯源碼生成目標OBJ文件;再通過連接將OBJ連接成可執行程序。  閱讀全文

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

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

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

            DS為Data Segment,數據段寄存器;

            SS為Stack Segment,棧段寄存器;

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

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

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

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

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

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

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

            posted @ 2016-03-27 23:34 eryar 閱讀(1501) | 評論 (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) | 評論 (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) | 評論 (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 閱讀(2736) | 評論 (1)編輯 收藏

            僅列出標題
            共41頁: First 17 18 19 20 21 22 23 24 25 Last 
            伊人色综合久久天天网| 青草影院天堂男人久久| 久久精品国产亚洲一区二区| 中文国产成人精品久久亚洲精品AⅤ无码精品 | 国产成人精品久久免费动漫| 欧美色综合久久久久久| 精品乱码久久久久久夜夜嗨| 久久久久久狠狠丁香| 国产人久久人人人人爽| 久久99国产精品成人欧美| 色综合久久中文色婷婷| 99久久国产综合精品麻豆| 久久亚洲欧洲国产综合| 色综合色天天久久婷婷基地| 狠狠色婷婷久久一区二区| 一本大道久久东京热无码AV| 精品久久久久久久久久中文字幕| 久久久久免费看成人影片| 久久久久久亚洲精品影院| 欧美麻豆久久久久久中文| 久久国产一片免费观看| 久久国产精品久久久| 亚洲中文字幕久久精品无码APP| 免费一级欧美大片久久网| 久久免费视频6| 四虎久久影院| 亚洲精品无码久久千人斩| 少妇内射兰兰久久| 亚洲国产二区三区久久| 热99RE久久精品这里都是精品免费| 99久久精品无码一区二区毛片 | 噜噜噜色噜噜噜久久| 久久久久久久久久久精品尤物 | 99久久精品国产综合一区| 久久精品18| 久久婷婷国产综合精品| 94久久国产乱子伦精品免费| 久久久久久曰本AV免费免费| 久久99热精品| 久久久亚洲欧洲日产国码是AV| 91精品国产综合久久精品|