国产成人精品亚洲777人妖,欧美日韩精品一区视频,最新亚洲国产,国产乱码精品一区二区亚洲

您的位置:首頁技術文章
文章詳情頁

javascript實現多邊形碰撞檢測

瀏覽:127日期:2023-10-10 10:15:42

javascript多邊形碰撞檢測

原理就是 循環每個頂點判斷是不是在多邊形內

const app = new PIXI.Application({ antialias: true });document.body.appendChild(app.view);const graphics = new PIXI.Graphics();// draw polygonconst path = [600, 370, 700, 460, 780, 420, 730, 570, 590, 520];graphics.lineStyle(0);graphics.beginFill(0x3500FA, 1);graphics.drawPolygon(path);graphics.endFill();app.stage.addChild(graphics); var xuanzhuan = PIXI.Sprite.from(’/moban/images/share.jpg’); xuanzhuan.width=120; xuanzhuan.height=120; xuanzhuan.x=13; xuanzhuan.y=33; app.stage.addChild(xuanzhuan); xuanzhuan.interactive = true; xuanzhuan.buttonMode = true; xuanzhuan .on(’pointerdown’, onDragStart) .on(’pointerup’, onDragEnd) .on(’pointerupoutside’, onDragEnd) .on(’pointermove’, onDragMove); function onDragStart(event) { // store a reference to the data // the reason for this is because of multitouch // we want to track the movement of this particular touch this.data = event.data; this.alpha = 0.5; this.dragging = true;}function onDragEnd() { this.alpha = 1; this.dragging = false; // set the interaction data to null this.data = null;} var posPolygon=[]; var dianlist={}; dianlist[’x’]=600; dianlist[’y’]=370; posPolygon.push(dianlist) var dianlist={}; dianlist[’x’]=700; dianlist[’y’]=460; posPolygon.push(dianlist) var dianlist={}; dianlist[’x’]=780; dianlist[’y’]=420; posPolygon.push(dianlist) var dianlist={}; dianlist[’x’]=730; dianlist[’y’]=570; posPolygon.push(dianlist) var dianlist={}; dianlist[’x’]=590; dianlist[’y’]=520; posPolygon.push(dianlist)function onDragMove() { if (this.dragging) { const newPosition = this.data.getLocalPosition(this.parent); this.x = newPosition.x; this.y = newPosition.y; var baoweihe=this.getBounds(); var youxiajiaox=baoweihe.x+baoweihe.width; var youxiajiaoy=baoweihe.y+baoweihe.height; var poslist=[]; var pos={}; pos[’x’]=baoweihe.x; pos[’y’]=baoweihe.y;poslist.push(pos);var pos={}; pos[’x’]=youxiajiaox; pos[’y’]=baoweihe.y;poslist.push(pos); var pos={}; pos[’x’]=youxiajiaox; pos[’y’]=youxiajiaoy;poslist.push(pos); var pos={}; pos[’x’]=baoweihe.x; pos[’y’]=youxiajiaoy;poslist.push(pos); var ispengzhuang=PolygonInPolygon(poslist, posPolygon,5); if(ispengzhuang){ alert(’碰撞了’); } }}function PolygonInPolygon(posPolygonA, posPolygonB, count){ console.log(posPolygonA); var count1=posPolygonA.length; for(var i=0;i<count1;i++ ){ var pos=posPolygonA[i]; console.log(pos); var ispengzhuang=PointInPolygon( pos, posPolygonB, count); if(ispengzhuang){ alert(’碰撞了’) } }}function PointInPolygon( pos, posPolygonB, count){ var cross = 0; //交點個數 for( var i = 0; i < count; i++ ) { var p1 = posPolygon[i]; var p2 = posPolygon[(i + 1) % count]; //下一個節點 // p1p2這條邊與水平線平行 if( p1.y == p2.y ) continue; // 交點在p1p2的延長線上 if( pos.y < Math.min( p1.y, p2.y ) ) continue; // 交點在p1p2的延長線上 if( pos.y > Math.max( p1.y, p2.y ) ) continue; // 計算交點 X 左邊 : (p2.y - p1.y)/(p2.x - p1.x) = (y - p1.y)/(x - p1.x) // 直線 K 值相等, 交點y = pos.y let x = (pos.y - p1.y) * (p2.x - p1.x) / (p2.y - p1.y) + p1.x // 只統計單邊交點,即點的正向方向 if(x > pos.x) cross ++; } return cross % 2 == 1;}

以上就是javascript實現多邊形碰撞檢測的詳細內容,更多關于javascript多邊形碰撞檢測的資料請關注好吧啦網其它相關文章!

標簽: JavaScript
相關文章:
主站蜘蛛池模板: 靖边县| 苍梧县| 义马市| 富锦市| 阿拉尔市| 虹口区| 桦南县| 措勤县| 泰州市| 马尔康县| 绥中县| 武威市| 海宁市| 沙河市| 龙江县| 吐鲁番市| 武强县| 浦东新区| 墨竹工卡县| 连山| 徐闻县| SHOW| 兰州市| 安吉县| 武穴市| 乾安县| 神农架林区| 龙里县| 时尚| 普兰县| 白河县| 额敏县| 呼图壁县| 亳州市| 固原市| 台江县| 凤阳县| 上饶县| 谢通门县| 卓资县| 剑河县|