MeshUtils.cs 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  1. /*
  2. ** SGI FREE SOFTWARE LICENSE B (Version 2.0, Sept. 18, 2008)
  3. ** Copyright (C) 2011 Silicon Graphics, Inc.
  4. ** All Rights Reserved.
  5. **
  6. ** Permission is hereby granted, free of charge, to any person obtaining a copy
  7. ** of this software and associated documentation files (the "Software"), to deal
  8. ** in the Software without restriction, including without limitation the rights
  9. ** to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
  10. ** of the Software, and to permit persons to whom the Software is furnished to do so,
  11. ** subject to the following conditions:
  12. **
  13. ** The above copyright notice including the dates of first publication and either this
  14. ** permission notice or a reference to http://oss.sgi.com/projects/FreeB/ shall be
  15. ** included in all copies or substantial portions of the Software.
  16. **
  17. ** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  18. ** INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
  19. ** PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL SILICON GRAPHICS, INC.
  20. ** BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  21. ** TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
  22. ** OR OTHER DEALINGS IN THE SOFTWARE.
  23. **
  24. ** Except as contained in this notice, the name of Silicon Graphics, Inc. shall not
  25. ** be used in advertising or otherwise to promote the sale, use or other dealings in
  26. ** this Software without prior written authorization from Silicon Graphics, Inc.
  27. */
  28. /*
  29. ** Original Author: Eric Veach, July 1994.
  30. ** libtess2: Mikko Mononen, http://code.google.com/p/libtess2/.
  31. ** LibTessDotNet: Remi Gillig, https://github.com/speps/LibTessDotNet
  32. */
  33. using System;
  34. using System.Collections.Generic;
  35. using System.Diagnostics;
  36. using UnityEngine.Scripting.APIUpdating;
  37. namespace UnityEngine.Experimental.Rendering.Universal
  38. {
  39. using Real = System.Single;
  40. namespace LibTessDotNet
  41. {
  42. internal struct Vec3
  43. {
  44. public readonly static Vec3 Zero = new Vec3();
  45. public Real X, Y, Z;
  46. public Real this[int index]
  47. {
  48. get
  49. {
  50. if (index == 0) return X;
  51. if (index == 1) return Y;
  52. if (index == 2) return Z;
  53. throw new IndexOutOfRangeException();
  54. }
  55. set
  56. {
  57. if (index == 0) X = value;
  58. else if (index == 1) Y = value;
  59. else if (index == 2) Z = value;
  60. else throw new IndexOutOfRangeException();
  61. }
  62. }
  63. public static void Sub(ref Vec3 lhs, ref Vec3 rhs, out Vec3 result)
  64. {
  65. result.X = lhs.X - rhs.X;
  66. result.Y = lhs.Y - rhs.Y;
  67. result.Z = lhs.Z - rhs.Z;
  68. }
  69. public static void Neg(ref Vec3 v)
  70. {
  71. v.X = -v.X;
  72. v.Y = -v.Y;
  73. v.Z = -v.Z;
  74. }
  75. public static void Dot(ref Vec3 u, ref Vec3 v, out Real dot)
  76. {
  77. dot = u.X * v.X + u.Y * v.Y + u.Z * v.Z;
  78. }
  79. public static void Normalize(ref Vec3 v)
  80. {
  81. var len = v.X * v.X + v.Y * v.Y + v.Z * v.Z;
  82. Debug.Assert(len >= 0.0f);
  83. len = 1.0f / (Real)Math.Sqrt(len);
  84. v.X *= len;
  85. v.Y *= len;
  86. v.Z *= len;
  87. }
  88. public static int LongAxis(ref Vec3 v)
  89. {
  90. int i = 0;
  91. if (Math.Abs(v.Y) > Math.Abs(v.X)) i = 1;
  92. if (Math.Abs(v.Z) > Math.Abs(i == 0 ? v.X : v.Y)) i = 2;
  93. return i;
  94. }
  95. public override string ToString()
  96. {
  97. return string.Format("{0}, {1}, {2}", X, Y, Z);
  98. }
  99. }
  100. internal static class MeshUtils
  101. {
  102. public const int Undef = ~0;
  103. public abstract class Pooled<T> where T : Pooled<T>, new()
  104. {
  105. private static Stack<T> _stack;
  106. public abstract void Reset();
  107. public virtual void OnFree() { }
  108. public static T Create()
  109. {
  110. if (_stack != null && _stack.Count > 0)
  111. {
  112. return _stack.Pop();
  113. }
  114. return new T();
  115. }
  116. public void Free()
  117. {
  118. OnFree();
  119. Reset();
  120. if (_stack == null)
  121. {
  122. _stack = new Stack<T>();
  123. }
  124. _stack.Push((T)this);
  125. }
  126. }
  127. public class Vertex : Pooled<Vertex>
  128. {
  129. internal Vertex _prev, _next;
  130. internal Edge _anEdge;
  131. internal Vec3 _coords;
  132. internal Real _s, _t;
  133. internal PQHandle _pqHandle;
  134. internal int _n;
  135. internal object _data;
  136. public override void Reset()
  137. {
  138. _prev = _next = null;
  139. _anEdge = null;
  140. _coords = Vec3.Zero;
  141. _s = 0;
  142. _t = 0;
  143. _pqHandle = new PQHandle();
  144. _n = 0;
  145. _data = null;
  146. }
  147. }
  148. public class Face : Pooled<Face>
  149. {
  150. internal Face _prev, _next;
  151. internal Edge _anEdge;
  152. internal Face _trail;
  153. internal int _n;
  154. internal bool _marked, _inside;
  155. internal int VertsCount
  156. {
  157. get
  158. {
  159. int n = 0;
  160. var eCur = _anEdge;
  161. do {
  162. n++;
  163. eCur = eCur._Lnext;
  164. } while (eCur != _anEdge);
  165. return n;
  166. }
  167. }
  168. public override void Reset()
  169. {
  170. _prev = _next = null;
  171. _anEdge = null;
  172. _trail = null;
  173. _n = 0;
  174. _marked = false;
  175. _inside = false;
  176. }
  177. }
  178. public struct EdgePair
  179. {
  180. internal Edge _e, _eSym;
  181. public static EdgePair Create()
  182. {
  183. var pair = new MeshUtils.EdgePair();
  184. pair._e = MeshUtils.Edge.Create();
  185. pair._e._pair = pair;
  186. pair._eSym = MeshUtils.Edge.Create();
  187. pair._eSym._pair = pair;
  188. return pair;
  189. }
  190. public void Reset()
  191. {
  192. _e = _eSym = null;
  193. }
  194. }
  195. public class Edge : Pooled<Edge>
  196. {
  197. internal EdgePair _pair;
  198. internal Edge _next, _Sym, _Onext, _Lnext;
  199. internal Vertex _Org;
  200. internal Face _Lface;
  201. internal Tess.ActiveRegion _activeRegion;
  202. internal int _winding;
  203. internal Face _Rface { get { return _Sym._Lface; } set { _Sym._Lface = value; } }
  204. internal Vertex _Dst { get { return _Sym._Org; } set { _Sym._Org = value; } }
  205. internal Edge _Oprev { get { return _Sym._Lnext; } set { _Sym._Lnext = value; } }
  206. internal Edge _Lprev { get { return _Onext._Sym; } set { _Onext._Sym = value; } }
  207. internal Edge _Dprev { get { return _Lnext._Sym; } set { _Lnext._Sym = value; } }
  208. internal Edge _Rprev { get { return _Sym._Onext; } set { _Sym._Onext = value; } }
  209. internal Edge _Dnext { get { return _Rprev._Sym; } set { _Rprev._Sym = value; } }
  210. internal Edge _Rnext { get { return _Oprev._Sym; } set { _Oprev._Sym = value; } }
  211. internal static void EnsureFirst(ref Edge e)
  212. {
  213. if (e == e._pair._eSym)
  214. {
  215. e = e._Sym;
  216. }
  217. }
  218. public override void Reset()
  219. {
  220. _pair.Reset();
  221. _next = _Sym = _Onext = _Lnext = null;
  222. _Org = null;
  223. _Lface = null;
  224. _activeRegion = null;
  225. _winding = 0;
  226. }
  227. }
  228. /// <summary>
  229. /// MakeEdge creates a new pair of half-edges which form their own loop.
  230. /// No vertex or face structures are allocated, but these must be assigned
  231. /// before the current edge operation is completed.
  232. /// </summary>
  233. public static Edge MakeEdge(Edge eNext)
  234. {
  235. Debug.Assert(eNext != null);
  236. var pair = EdgePair.Create();
  237. var e = pair._e;
  238. var eSym = pair._eSym;
  239. // Make sure eNext points to the first edge of the edge pair
  240. Edge.EnsureFirst(ref eNext);
  241. // Insert in circular doubly-linked list before eNext.
  242. // Note that the prev pointer is stored in Sym->next.
  243. var ePrev = eNext._Sym._next;
  244. eSym._next = ePrev;
  245. ePrev._Sym._next = e;
  246. e._next = eNext;
  247. eNext._Sym._next = eSym;
  248. e._Sym = eSym;
  249. e._Onext = e;
  250. e._Lnext = eSym;
  251. e._Org = null;
  252. e._Lface = null;
  253. e._winding = 0;
  254. e._activeRegion = null;
  255. eSym._Sym = e;
  256. eSym._Onext = eSym;
  257. eSym._Lnext = e;
  258. eSym._Org = null;
  259. eSym._Lface = null;
  260. eSym._winding = 0;
  261. eSym._activeRegion = null;
  262. return e;
  263. }
  264. /// <summary>
  265. /// Splice( a, b ) is best described by the Guibas/Stolfi paper or the
  266. /// CS348a notes (see Mesh.cs). Basically it modifies the mesh so that
  267. /// a->Onext and b->Onext are exchanged. This can have various effects
  268. /// depending on whether a and b belong to different face or vertex rings.
  269. /// For more explanation see Mesh.Splice().
  270. /// </summary>
  271. public static void Splice(Edge a, Edge b)
  272. {
  273. var aOnext = a._Onext;
  274. var bOnext = b._Onext;
  275. aOnext._Sym._Lnext = b;
  276. bOnext._Sym._Lnext = a;
  277. a._Onext = bOnext;
  278. b._Onext = aOnext;
  279. }
  280. /// <summary>
  281. /// MakeVertex( eOrig, vNext ) attaches a new vertex and makes it the
  282. /// origin of all edges in the vertex loop to which eOrig belongs. "vNext" gives
  283. /// a place to insert the new vertex in the global vertex list. We insert
  284. /// the new vertex *before* vNext so that algorithms which walk the vertex
  285. /// list will not see the newly created vertices.
  286. /// </summary>
  287. public static void MakeVertex(Edge eOrig, Vertex vNext)
  288. {
  289. var vNew = MeshUtils.Vertex.Create();
  290. // insert in circular doubly-linked list before vNext
  291. var vPrev = vNext._prev;
  292. vNew._prev = vPrev;
  293. vPrev._next = vNew;
  294. vNew._next = vNext;
  295. vNext._prev = vNew;
  296. vNew._anEdge = eOrig;
  297. // leave coords, s, t undefined
  298. // fix other edges on this vertex loop
  299. var e = eOrig;
  300. do {
  301. e._Org = vNew;
  302. e = e._Onext;
  303. } while (e != eOrig);
  304. }
  305. /// <summary>
  306. /// MakeFace( eOrig, fNext ) attaches a new face and makes it the left
  307. /// face of all edges in the face loop to which eOrig belongs. "fNext" gives
  308. /// a place to insert the new face in the global face list. We insert
  309. /// the new face *before* fNext so that algorithms which walk the face
  310. /// list will not see the newly created faces.
  311. /// </summary>
  312. public static void MakeFace(Edge eOrig, Face fNext)
  313. {
  314. var fNew = MeshUtils.Face.Create();
  315. // insert in circular doubly-linked list before fNext
  316. var fPrev = fNext._prev;
  317. fNew._prev = fPrev;
  318. fPrev._next = fNew;
  319. fNew._next = fNext;
  320. fNext._prev = fNew;
  321. fNew._anEdge = eOrig;
  322. fNew._trail = null;
  323. fNew._marked = false;
  324. // The new face is marked "inside" if the old one was. This is a
  325. // convenience for the common case where a face has been split in two.
  326. fNew._inside = fNext._inside;
  327. // fix other edges on this face loop
  328. var e = eOrig;
  329. do {
  330. e._Lface = fNew;
  331. e = e._Lnext;
  332. } while (e != eOrig);
  333. }
  334. /// <summary>
  335. /// KillEdge( eDel ) destroys an edge (the half-edges eDel and eDel->Sym),
  336. /// and removes from the global edge list.
  337. /// </summary>
  338. public static void KillEdge(Edge eDel)
  339. {
  340. // Half-edges are allocated in pairs, see EdgePair above
  341. Edge.EnsureFirst(ref eDel);
  342. // delete from circular doubly-linked list
  343. var eNext = eDel._next;
  344. var ePrev = eDel._Sym._next;
  345. eNext._Sym._next = ePrev;
  346. ePrev._Sym._next = eNext;
  347. eDel.Free();
  348. }
  349. /// <summary>
  350. /// KillVertex( vDel ) destroys a vertex and removes it from the global
  351. /// vertex list. It updates the vertex loop to point to a given new vertex.
  352. /// </summary>
  353. public static void KillVertex(Vertex vDel, Vertex newOrg)
  354. {
  355. var eStart = vDel._anEdge;
  356. // change the origin of all affected edges
  357. var e = eStart;
  358. do {
  359. e._Org = newOrg;
  360. e = e._Onext;
  361. } while (e != eStart);
  362. // delete from circular doubly-linked list
  363. var vPrev = vDel._prev;
  364. var vNext = vDel._next;
  365. vNext._prev = vPrev;
  366. vPrev._next = vNext;
  367. vDel.Free();
  368. }
  369. /// <summary>
  370. /// KillFace( fDel ) destroys a face and removes it from the global face
  371. /// list. It updates the face loop to point to a given new face.
  372. /// </summary>
  373. public static void KillFace(Face fDel, Face newLFace)
  374. {
  375. var eStart = fDel._anEdge;
  376. // change the left face of all affected edges
  377. var e = eStart;
  378. do {
  379. e._Lface = newLFace;
  380. e = e._Lnext;
  381. } while (e != eStart);
  382. // delete from circular doubly-linked list
  383. var fPrev = fDel._prev;
  384. var fNext = fDel._next;
  385. fNext._prev = fPrev;
  386. fPrev._next = fNext;
  387. fDel.Free();
  388. }
  389. /// <summary>
  390. /// Return signed area of face.
  391. /// </summary>
  392. public static Real FaceArea(Face f)
  393. {
  394. Real area = 0;
  395. var e = f._anEdge;
  396. do
  397. {
  398. area += (e._Org._s - e._Dst._s) * (e._Org._t + e._Dst._t);
  399. e = e._Lnext;
  400. } while (e != f._anEdge);
  401. return area;
  402. }
  403. }
  404. }
  405. }