• <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 
            久久精品国产久精国产一老狼| 看久久久久久a级毛片| 国产精品无码久久久久| 国产999精品久久久久久| 国产成人精品久久一区二区三区av | 亚洲精品国精品久久99热| 久久伊人精品青青草原日本| 超级97碰碰碰碰久久久久最新| 色欲综合久久中文字幕网| 99久久国产免费福利| 亚洲人AV永久一区二区三区久久| 精品人妻伦九区久久AAA片69| 精品久久久久久久无码| 深夜久久AAAAA级毛片免费看| 国产亚洲精久久久久久无码77777 国产亚洲精品久久久久秋霞 | 97超级碰碰碰久久久久| 欧美精品一区二区久久| 精品熟女少妇a∨免费久久| 久久久免费观成人影院| 国内精品久久久久| 精品国产青草久久久久福利| 久久国产免费| 国产精品毛片久久久久久久| 国产精品久久久久蜜芽| 久久99精品久久久久久9蜜桃| 香蕉久久av一区二区三区| 久久国产精品无码网站| 久久精品国产91久久综合麻豆自制| 久久无码高潮喷水| 怡红院日本一道日本久久| 亚洲国产精品成人久久| 2021国产精品午夜久久| 人人狠狠综合88综合久久| 国产精品久久久久久久久久免费| 久久久久久午夜成人影院 | 久久精品夜夜夜夜夜久久| 99久久精品国产一区二区 | 精品国产乱码久久久久久郑州公司 | 国产精品久久久久AV福利动漫| 久久人做人爽一区二区三区| 亚洲国产成人久久综合野外|