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

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

            posted @ 2017-05-07 21:47 eryar 閱讀(2822) | 評論 (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 閱讀(6367) | 評論 (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 閱讀(1977) | 評論 (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 閱讀(1313) | 評論 (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 閱讀(2173) | 評論 (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 閱讀(1358) | 評論 (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 閱讀(1579) | 評論 (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 閱讀(1689) | 評論 (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 閱讀(1351) | 評論 (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 閱讀(4324) | 評論 (0)編輯 收藏

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

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

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

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

            僅列出標題
            共41頁: First 15 16 17 18 19 20 21 22 23 Last 
            天堂无码久久综合东京热| 国产午夜福利精品久久| 久久婷婷色综合一区二区| 一本久久a久久精品综合香蕉| 中文字幕久久精品无码| 久久99久久99小草精品免视看| 久久国产精品成人免费| 精品久久久久一区二区三区| 欧美激情一区二区久久久| 久久综合狠狠综合久久激情 | 成人综合久久精品色婷婷| 久久亚洲AV成人无码国产| 久久精品夜色噜噜亚洲A∨| 久久99国产精品一区二区| 无码8090精品久久一区| 51久久夜色精品国产| 精品久久久无码21p发布| 国产高清美女一级a毛片久久w| 2021国产精品午夜久久| 久久精品国产亚洲精品| 国产精品久久久久久影院| 日本欧美久久久久免费播放网| 欧美性猛交xxxx免费看久久久| 国内精品久久久久伊人av| 色婷婷久久综合中文久久蜜桃av| 久久艹国产| 色综合合久久天天综合绕视看| 欧美激情精品久久久久| 久久男人Av资源网站无码软件| 国产午夜福利精品久久2021| 97视频久久久| 久久久国产视频| 国产毛片欧美毛片久久久| 精品无码久久久久久国产| 久久美女网站免费| 国产美女久久久| 久久国产一区二区| 91精品国产色综久久| 久久免费视频一区| 亚洲精品乱码久久久久久| 97久久综合精品久久久综合|