這篇文章將為大家詳細講解有關(guān)JavaScript如何實現(xiàn)封閉區(qū)域布爾運算,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)建站是一家以網(wǎng)絡(luò)技術(shù)公司,為中小企業(yè)提供網(wǎng)站維護、成都網(wǎng)站制作、成都網(wǎng)站建設(shè)、網(wǎng)站備案、服務(wù)器租用、域名注冊、軟件開發(fā)、重慶小程序開發(fā)等企業(yè)互聯(lián)網(wǎng)相關(guān)業(yè)務(wù),是一家有著豐富的互聯(lián)網(wǎng)運營推廣經(jīng)驗的科技公司,有著多年的網(wǎng)站建站經(jīng)驗,致力于幫助中小企業(yè)在互聯(lián)網(wǎng)讓打出自已的品牌和口碑,讓企業(yè)在互聯(lián)網(wǎng)上打開一個面向全國乃至全球的業(yè)務(wù)窗口:建站咨詢電話:18980820575
代碼如下:
function getOperatedCurves(sourceCurs: Curve[], targetCus: Curve[]) { let source: Polyline | Circle = (sourceCurs[0] instanceof Circle) ? sourceCurs[0] as Circle : new Polyline().Combine(sourceCurs)[0]; let target: Polyline | Circle = (targetCus[0] instanceof Circle) ? targetCus[0] as Circle : new Polyline().Combine(targetCus)[0]; try { if (!source.IsClose || !target.IsClose) throw new Error("不是封閉曲線"); } catch (err) { console.log(err); } let interPts = source.IntersectWith(target, IntersectOption.OnBothOperands); let sourceContainerTarget = isTargetCurInSourceCur(source, target); let targetContainerSource = isTargetCurInSourceCur(target, source); let isContainer = sourceContainerTarget || targetContainerSource; let intersectionList: Curve[] = []; //交集 let unionList: Curve[] = []; //并集 let subList: Curve[] = []; //補集 /* *兩封閉區(qū)域有交點并且不是包含關(guān)系,則通過交點把區(qū)域分割 */ if (interPts.length && !isContainer) { let pars1 = interPts.map(p => source.GetParamAtPoint(p)).sort((a, b) => a - b); let pars2 = interPts.map(p => target.GetParamAtPoint(p)).sort((a, b) => a - b); let cus1: Array<Polyline | Arc> = source.GetSplitCurves(pars1); cus1.forEach(pl => { if (isTargetCurInSourceCur(target, pl)) { intersectionList.push(pl); } else { subList.push(pl); unionList.push(pl); } }) let cus2: Array<Polyline | Arc> = target.GetSplitCurves(pars2); cus2.forEach(pl => { if (isTargetCurInSourceCur(source, pl)) { intersectionList.push(pl); subList.push(pl); } else { unionList.push(pl); } }) } else { if (isContainer) { if (sourceContainerTarget) { intersectionList.push(target); subList.push(source, target); unionList.push(source); } else { unionList.push(target); intersectionList.push(source); } } else { unionList.push(source, target) subList.push(source); } } return { intersectionList, unionList, subList } }
由于一些曲線類實現(xiàn)方法不一,這里主要說一些實現(xiàn)布爾運算的思路
判斷2封閉曲線是否是被包含的關(guān)系
獲取2封閉曲線的所有交點,這里交點可能是圓和線,線和線,圓和圓的,求交點的方法網(wǎng)上應(yīng)該很多,以后有時間也會寫寫用JavaScript實現(xiàn)方式
根據(jù)所有的交點把2封閉曲線分割為多個部分
對分割后的線段進行整理,其中相交部分是曲線在對方曲線內(nèi)部的部分,合并是互不在對方曲線內(nèi)部的部分,相減類似不想說了,具體看代碼,如果是被包含狀態(tài)則更加就簡單了
關(guān)于“JavaScript如何實現(xiàn)封閉區(qū)域布爾運算”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。
新聞標(biāo)題:JavaScript如何實現(xiàn)封閉區(qū)域布爾運算
新聞來源:http://m.rwnh.cn/article28/jcgicp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)建站、網(wǎng)站排名、網(wǎng)站設(shè)計、網(wǎng)站導(dǎo)航、做網(wǎng)站、定制開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)