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

                 摘要: 最近在開發一個自動出圖程序,從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 閱讀(2140) | 評論 (0)編輯 收藏

                 摘要: RvmTranslator6.0beta: Translate PDMS RVM to 3ds Max by MAXScript file.  閱讀全文

            posted @ 2017-05-07 21:47 eryar 閱讀(2849) | 評論 (0)編輯 收藏

                 摘要: Abstract. Bounding Volume Hierarchy(BVH) organizes geometric objects in the tree based on spatial relationships. Each node in the tree contains an axis-aligned bounding box of all the objects below it. Bounding volume hierarchies are used in many algorithms to support efficient operations on the sets of geometric objects, such as collision detection, ray-tracing, searching of nearest objects, and view frustum culling. The paper focus on the usage of BVH on TopoDS_Shape, and its application.
              閱讀全文

            posted @ 2017-05-03 22:50 eryar 閱讀(6413) | 評論 (0)編輯 收藏

                 摘要: SdnfViewer - 3D Viewer for SDNF File.

            Use SdnfViewer to view the structure model by SDNF file. The SdnfViewer is under developing, if you have any questions, suggestions, you can send me email, my email address is: eryar@163.com.  閱讀全文

            posted @ 2017-04-24 20:48 eryar 閱讀(1993) | 評論 (0)編輯 收藏

                 摘要: Abstract. Starting from OCCT6.8.0 will include one more algorithm for solving global optimization problems. Its development has been triggered by insufficient performance and robustness of existing algorithm of minimization of curve-surface distance in Extrema package. The PSO, Algorithms in this family are stochastic, and this feature can be perceived as opposite to robustness. However, we found it was not only much faster than original deterministic one, but also more robust in complex real-wo  閱讀全文

            posted @ 2017-04-18 22:51 eryar 閱讀(1326) | 評論 (0)編輯 收藏

                 摘要: Abstract. OpenCASCADE provides the algorithm to implement of the intersection between two 2d conic curve. The conic is defined by its implicit quadaratic equation, so the intersection problem is become a polynomial roots finding problem. The paper focus on the two conic curve intersection algorithm implementation.

            Key Words. 2d conic intersection, conic equation  閱讀全文

            posted @ 2017-03-25 22:40 eryar 閱讀(2183) | 評論 (0)編輯 收藏

                 摘要: Abstract. OpenCASCADE provides the algorithm to implementation of the analytical intersection between a 2d line and another conic curve. The conic is defined by its implicit quadaratic equation, so the intersection problem is become a polynomial roots finding problem. The paper focus on the 2d line intersection another conic algorithm implementation.

            Key Words. 2d line intersection, conic  閱讀全文

            posted @ 2017-03-23 23:23 eryar 閱讀(1370) | 評論 (0)編輯 收藏

                 摘要: Abstract. OpenCASCADE provides the algorithm to search the intersection point between 3 planes. If two of the planes are parallel or identical, will get no result.

            Key Words. Plane Intersection  閱讀全文

            posted @ 2017-03-19 21:52 eryar 閱讀(1589) | 評論 (0)編輯 收藏

                 摘要: Abstract. OpenCASCADE geometric tools provide algorithms to calculate the intersection of two 2d curves, surfaces, or a 3d curve and a surface. Those are the basis of the Boolean Operation, so under the implementation can help to under the BO algorithms. The paper focus on the intersection of two 2d analytical line.

            Key Words. OpenCASCADE, Line Intersection  閱讀全文

            posted @ 2017-02-25 23:05 eryar 閱讀(1707) | 評論 (0)編輯 收藏

                 摘要: In Visual Studio you can specify changes to environment variables in the project settings. Open your project, go to Project -> Properties... Under Configuration Properties -> Debugging, edit the Environment value to set environment variables.
            For example, if you want to add the directory “c:\foo\bin” to the path when debugging your application, set the Environment value to “PATH=%PATH%;c:\foo\bin”.
              閱讀全文

            posted @ 2017-02-21 21:39 eryar 閱讀(1358) | 評論 (0)編輯 收藏

                 摘要: Abstract. The Piping Component File(PCF) are text files containing component and routing information. The PCF format was originally developed as an easy way to drive Isogen, the syntax is simple which means it is straightforward to create from most piping design software. But AVEVA PDMS only can export IDF format, PcfTranslator can translate AVEVA PDMS piping model to PCF, you can use the PCF in IsoAlgo for piping isometrics drawing or IsoAlgo3d to visualize the 3d model. You can also import the  閱讀全文

            posted @ 2017-02-16 22:41 eryar 閱讀(4372) | 評論 (0)編輯 收藏

                 摘要: RvmTranslator6.0 - Translate PDMS RVM to Dassault Systemes 3DXML.  閱讀全文

            posted @ 2017-01-26 10:58 eryar 閱讀(1924) | 評論 (0)編輯 收藏

                 摘要: RvmTranslator6.0 Preview:
            1.Introduce Qt for a good GUI;
            2.Support Dassault Systemes 3DXML translation;  閱讀全文

            posted @ 2017-01-18 22:38 eryar 閱讀(1906) | 評論 (0)編輯 收藏

                 摘要: Abstract. EasyMesh is developed by Bojan Niceno, it is a two-dimensional quality mesh generator. EasyMesh can generate two dimensional, unstructured, Delaunay and constrained Delaunay triangulations in general domains. It can handle holes in the domain. The paper focus on the usage of EasyMesh.

            Key Words. EasyMesh, Delaunay Triangualtion, Triangulation, Mesh  閱讀全文

            posted @ 2017-01-06 22:54 eryar 閱讀(3364) | 評論 (1)編輯 收藏

                 摘要: RvmTranslator5.1

            1. Fix crash bug for binary rvm file;

            download RvmTranslator5.1:
            http://yun.baidu.com/pcloud/album/info?uk=3808749571&album_id=3634993082542187183  閱讀全文

            posted @ 2016-12-18 23:05 eryar 閱讀(2705) | 評論 (0)編輯 收藏

            列出全部內容
            共41頁: First 15 16 17 18 19 20 21 22 23 Last 
            国产精品免费久久久久影院| 亚洲精品乱码久久久久久自慰| 久久久精品国产免大香伊| 国产99久久九九精品无码| 久久夜色精品国产亚洲| 国产精品久久久久9999高清| 久久精品欧美日韩精品| 国产精品久久久久久久久鸭| 狠狠色婷婷久久一区二区三区| 久久夜色精品国产噜噜麻豆| 亚洲日韩中文无码久久| 亚洲国产另类久久久精品小说| 久久成人国产精品免费软件| 青青草原精品99久久精品66| 国产综合久久久久| 91精品国产色综久久| 精品久久人人做人人爽综合| 无码任你躁久久久久久久| 中文字幕亚洲综合久久菠萝蜜| 久久久亚洲裙底偷窥综合| 一本一道久久综合狠狠老 | 东京热TOKYO综合久久精品| 国产午夜福利精品久久2021 | 久久久精品视频免费观看| 久久五月精品中文字幕| 久久婷婷色综合一区二区| 精品国产一区二区三区久久久狼| 久久99精品国产麻豆宅宅| 久久精品国产99久久香蕉| 亚洲中文字幕久久精品无码喷水| 久久免费视频观看| 免费精品久久天干天干| 好久久免费视频高清| 亚洲国产高清精品线久久| 久久久一本精品99久久精品66 | 国産精品久久久久久久| 久久中文字幕人妻熟av女| 久久久国产精品网站| 久久人人爽人人爽人人片AV麻烦| 国产精品久久国产精品99盘| 伊人色综合久久天天人守人婷|