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

            PlaneGCS-平面幾何約束求解器用法

            Posted on 2023-03-24 22:10 eryar 閱讀(1473) 評論(0)  編輯 收藏 引用 所屬分類: 2.OpenCASCADE

            PlaneGCS-平面幾何約束求解器用法

            eryar@163.com

            1 Introduction

            在傳統(tǒng)的機械設(shè)計軟件中,一般使用幾何約束求解器來畫草圖,再通過對草圖進行拉伸旋轉(zhuǎn)等生成特征實現(xiàn)建模功能。基于參數(shù)化歷史特征方式來建模的軟件繞不開幾何約束求解器,目前主流商用軟件一般使用西門子D-Cubed DCM及達索的CGM。開源世界也有兩款幾何約束求解器:SolveSpace和PlaneGCS。

            PlaneGCS字面意思是平面幾何約束求解器,主要用于繪制二維草圖。因為PlaneGCS代碼相對清晰,功能簡單,只能處理平面幾何元素的約束,本文主要結(jié)合示例代碼介紹PlaneGCS的使用方法,在會用的基礎(chǔ)上去理解源碼的實現(xiàn)邏輯。

            2 PlaneGCS

            PlaneGCS主要包含三部分:

            • 幾何元素數(shù)據(jù)結(jié)構(gòu)文件:h/Geo.cpp
            • 約束條件文件:h/Constraints.cpp
            • 約束求解實現(xiàn)文件:h/GCS.cpp

            其中幾何元素數(shù)據(jù)結(jié)構(gòu)中定義的幾何元素如下圖所示:

            從上圖可以看到,目前支持的幾何元素有點Point,直線Line,圓Circle,橢圓Ellipse,雙曲線Hyperbola,拋物線Parabola,圓弧Arc/ArcOfEllipse/ArcOfHyperbola/ArcOfParabola,及B樣條曲線BSpline,不過看代碼BSpline部分函數(shù)沒有實現(xiàn),應(yīng)該是不支持的。

            約束條件文件定義的約束類型如下圖所示:

            從約束求解文件中可以看到,其中數(shù)學(xué)計算主要使用Eigen中非線性方程組求解算法和boost的圖graph算法,從中可以推測出實現(xiàn)平面幾何約束求解器中需要的關(guān)鍵技術(shù)。先掌握PlaneGCS的用法,然后再分析其背后的實現(xiàn)原理細節(jié)。

            3 Code Example

            這里給出一個簡單的示例程序,先讓大家對PlaneGCS有個認識。示例程序中演示了給兩條直線加上水平和垂直約束。為了便于查看約束后的結(jié)果,在代碼中生成Draw Test Harness腳本文件。

            程序代碼如下所示:

            /*
            Copyright(C) 2023 Shing Liu(eryar@163.com)
            Permission is hereby granted, free of charge, to any person obtaining a copy
            of this software and associated documentation files(the "Software"), to deal
            in the Software without restriction, including without limitation the rights
            to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
            copies of the Software, and to permit persons to whom the Software is
            furnished to do so, subject to the following conditions :
            The above copyright notice and this permission notice shall be included in all
            copies or substantial portions of the Software.
            THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
            IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
            FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
            AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
            LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
            OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
            SOFTWARE.
            */
            #include "GCS.h"
            #include <fstream>
            void test()
            {
                double aPx1 = 0.0;
                double aPy1 = 0.0;
                double aPx2 = 3.0;
                double aPy2 = 3.0;
                double aPx3 = 6.0;
                double aPy3 = 9.0;
                GCS::VEC_pD aParameters;
                aParameters.push_back(&aPx1);
                aParameters.push_back(&aPy1);
                aParameters.push_back(&aPx2);
                aParameters.push_back(&aPy2);
                aParameters.push_back(&aPx3);
                aParameters.push_back(&aPy3);
                GCS::Point aP1(&aPx1, &aPy1);
                GCS::Point aP2(&aPx2, &aPy2);
                GCS::Point aP3(&aPx3, &aPy3);
                GCS::Line aLine1;
                GCS::Line aLine2;
                aLine1.p1 = aP1;
                aLine1.p2 = aP2;
                aLine2.p1 = aP2;
                aLine2.p2 = aP3;
                std::ofstream aTclFile("d:/gcs.tcl");
                aTclFile << "# 2 lines before PlaneGCS solve" << std::endl;
                aTclFile << "vinit" << std::endl;
                aTclFile << "vertex aP1 " << aPx1 << " " << aPy1 << " 0" << std::endl;
                aTclFile << "vertex aP2 " << aPx2 << " " << aPy2 << " 0" << std::endl;
                aTclFile << "vertex aP3 " << aPx3 << " " << aPy3 << " 0" << std::endl;
                aTclFile << "polyvertex aPolyline1 aP1 aP2 aP3" << std::endl;
                aTclFile << "vdisplay aPolyline1 " << std::endl;
                aTclFile << "vsetcolor aPolyline1 RED" << std::endl;
                GCS::System aSolver;
                aSolver.addConstraintHorizontal(aLine1);
                aSolver.addConstraintVertical(aLine2);
                if (aSolver.solve(aParameters) == GCS::Success)
                {
                    aSolver.applySolution();
                    aTclFile << "# 2 lines after PlaneGCS solve" << std::endl;
                    aTclFile << "vertex aV1 " << aPx1 << " " << aPy1 << " 0" << std::endl;
                    aTclFile << "vertex aV2 " << aPx2 << " " << aPy2 << " 0" << std::endl;
                    aTclFile << "vertex aV3 " << aPx3 << " " << aPy3 << " 0" << std::endl;
                    aTclFile << "polyvertex aPolyline2 aV1 aV2 aV3" << std::endl;
                    aTclFile << "vdisplay aPolyline2 " << std::endl;
                    aTclFile << "vsetcolor aPolyline2 GREEN" << std::endl;
                }
                aTclFile.close();
            }
            int main(int argc, char* argv[])
            {
                test();
                return 0;
            }

            從程序代碼中可以看出PlaneGCS的使用先要定義需要計算的參數(shù)aParameters,這些參數(shù)是幾何元素中的數(shù)據(jù),都是使用的指針。然后將約束加入到GCS::System中,最后代入?yún)?shù)調(diào)用solve函數(shù)進行求解。求解成功后使用applySolution()函數(shù)應(yīng)用求解結(jié)果。求解結(jié)果在Draw中顯示的綠色的線如下圖所示:

            4 Conclusion

            本文結(jié)合示例代碼演示如何使用PlaneGCS,主要使用了水平和垂直約束。PlaneGCS中還支持其他約束類型,童鞋們可以自己探索一下。幾何造型內(nèi)核和幾何約束求解器常被看作是工業(yè)CAD軟件的卡脖子技術(shù),開源庫一般功能不太完善,但是用來探索背后的實現(xiàn)原理還是有參考借鑒意義的。希望有更多的童鞋去了解背后的原理,共同來提高國內(nèi)三維CAD軟件開發(fā)水平。

            思思久久好好热精品国产 | 久久久久久久综合狠狠综合| 国产精品永久久久久久久久久 | 国产99久久久久久免费看| 久久99精品国产99久久6男男| 99久久国产免费福利| 久久99精品久久久久久野外| 色99久久久久高潮综合影院| 亚洲欧洲久久av| 国产精品久久久久久影院| 国产精品丝袜久久久久久不卡| 日本精品久久久久影院日本| 欧美激情一区二区久久久| 久久99热狠狠色精品一区| 亚洲?V乱码久久精品蜜桃| 久久精品国产99久久无毒不卡| 国产激情久久久久影院小草| 久久婷婷人人澡人人爽人人爱| 久久国产精品99精品国产987| 中文字幕亚洲综合久久菠萝蜜| 久久精品国产亚洲AV大全| 日韩欧美亚洲综合久久影院Ds| 久久精品国产亚洲AV无码麻豆| 久久亚洲高清综合| 久久99热狠狠色精品一区| 久久免费视频1| 久久精品?ⅴ无码中文字幕| 久久九九精品99国产精品| 亚洲欧洲精品成人久久曰影片| 蜜桃麻豆www久久| 色综合久久无码中文字幕| 亚洲精品综合久久| 久久久久香蕉视频| 久久av高潮av无码av喷吹| 精品久久久久久国产91| 97超级碰碰碰久久久久| 亚洲AV日韩AV天堂久久| 亚洲精品乱码久久久久久按摩 | 色狠狠久久综合网| 久久综合色区| 思思久久99热免费精品6|