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

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

            posted @ 2017-05-07 21:47 eryar 閱讀(2862) | 評論 (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 閱讀(6442) | 評論 (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 閱讀(2003) | 評論 (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 閱讀(1331) | 評論 (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 閱讀(2188) | 評論 (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 閱讀(1374) | 評論 (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 閱讀(1593) | 評論 (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 閱讀(1711) | 評論 (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 閱讀(1365) | 評論 (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 閱讀(4426) | 評論 (0)編輯 收藏

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

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

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

            posted @ 2017-01-18 22:38 eryar 閱讀(1914) | 評論 (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 閱讀(3393) | 評論 (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 閱讀(2714) | 評論 (0)編輯 收藏

            僅列出標題
            共41頁: First 15 16 17 18 19 20 21 22 23 Last 
            成人久久综合网| 日本强好片久久久久久AAA| 久久精品国产亚洲77777| 久久夜色精品国产噜噜亚洲AV| 久久人爽人人爽人人片AV| 伊人久久大香线蕉影院95| 亚洲精品乱码久久久久久蜜桃| 国内精品伊人久久久久av一坑| 欧美午夜A∨大片久久| 国产欧美久久久精品| 国产精品久久久久久久app| 久久精品国产一区二区三区日韩| 无码国内精品久久人妻麻豆按摩| aaa级精品久久久国产片| 久久夜色精品国产噜噜亚洲a| 91久久九九无码成人网站| 亚洲伊人久久精品影院| 亚洲国产婷婷香蕉久久久久久| 伊人久久大香线蕉精品| 99久久精品毛片免费播放| 狠狠色综合网站久久久久久久高清 | 久久精品国产99久久久香蕉| 伊人久久大香线蕉亚洲五月天| 欧美精品丝袜久久久中文字幕| 日本福利片国产午夜久久| 浪潮AV色综合久久天堂| 日本人妻丰满熟妇久久久久久| 一本色道久久综合| 久久综合鬼色88久久精品综合自在自线噜噜| 久久青青草原精品影院| 色婷婷综合久久久久中文一区二区 | 久久综合九色综合精品| 69久久精品无码一区二区| 久久精品中文无码资源站| 高清免费久久午夜精品| 国产精品久久久久9999| 久久精品国产99国产精品澳门| 久久久青草久久久青草| 九九热久久免费视频| 久久久久亚洲AV无码去区首| 日本亚洲色大成网站WWW久久|