• <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 閱讀(2141) | 評論 (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 閱讀(6414) | 評論 (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 
            久久中文字幕无码专区| 久久久久亚洲AV综合波多野结衣| 一本大道久久香蕉成人网| 欧美激情精品久久久久久久| 色婷婷综合久久久久中文字幕| 国产99久久久国产精品小说| 99久久99久久精品国产片果冻| 亚洲精品白浆高清久久久久久| 俺来也俺去啦久久综合网| 国产99久久久国产精品~~牛| 无码任你躁久久久久久老妇App| 无码精品久久久天天影视| 国内精品久久久久久久涩爱| 丁香色欲久久久久久综合网| 国产精品99久久久久久董美香 | 久久久久亚洲av综合波多野结衣| 久久综合亚洲欧美成人| 久久久久亚洲精品中文字幕| 久久亚洲中文字幕精品有坂深雪| 久久99精品久久久久久齐齐| 国内精品人妻无码久久久影院 | 国产福利电影一区二区三区久久老子无码午夜伦不 | 国产一区二区久久久| 99久久www免费人成精品| 久久这里只有精品18| 久久久久久免费视频| 国产福利电影一区二区三区,免费久久久久久久精 | 国产激情久久久久影院| 国产成人无码久久久精品一| 久久成人国产精品免费软件| 欧美久久一级内射wwwwww.| 99国内精品久久久久久久| 亚洲国产精久久久久久久| 久久亚洲精品中文字幕三区| 亚洲成色WWW久久网站| 久久久久亚洲精品日久生情| 成人久久免费网站| 人妻少妇久久中文字幕| 亚洲综合熟女久久久30p| 亚洲中文字幕久久精品无码喷水| 久久精品无码一区二区WWW|