Instant-Meshes-奇异点检测

  对于 4 − R o s y   f i e l d 4-Rosy\ field 4Rosy field,每个三角形网格的顶点 V i V_i Vi,都有一个标架 q s i q_{si} qsi,根据以下式子,可判断奇异点:
arg ⁡ min ⁡ s i , s j { q s i ⋅ q s j }              s i , s j ∈ [ 0 , 3 ] i n d e x = ( ∑ ( s i − s j ) )   m o d   4 \begin{aligned} &\mathop{\arg\min}_{si,sj}\{q_{si}\cdot q_{sj}\}\ \ \ \ \ \ \ \ \ \ \ \ si,sj\in [0,3]\\ & \mathrm{index}=(\sum(si-sj))\bmod 4 \end{aligned} argminsi,sj{qsiqsj}            si,sj[0,3]index=((sisj))mod4

{ i s   s i n g u l a r i t y ,        i n d e x = 1   o r   3 n o t   s i n g u l a r i t y ,     e l s e \left\{ \begin{aligned} &\mathrm{is\ singularity},\ \ \ \ \ \ \mathrm{index}=1\ or\ 3\\ &\mathrm{not\ singularity},\ \ \ \mathrm{else}\\ \end{aligned} \right. {is singularity,      index=1 or 3not singularity,   else

即在三角形中,相邻两个点的标架夹成的最小角的标架方向的序号的差的和与方向场的方向数的余数若为1或者3即该三角形内有奇异点。

Instant-Meshes-奇异点检测