Sorting out duplicate vertices [THE ACTUAL POST]

sry for the double post, i forgot to log in! moderator, plz delete the other thread :frowning:


hey! i’ve got a problem which most of you probaby have solved yet and as i’m stuck for days i thought i’d ask you :stuck_out_tongue:

this is my vertex struct:

</font><blockquote><font size=“1” face=“Verdana, Arial”>code:</font><hr /><pre style=“font-size:x-small; font-family: monospace;”>struct vxVertex
{
float Map[2];
float Normal[3];
float Position[3];

inline	bool operator ==( const vxVertex &v ) const { return ( (fabs(Map[0]-v.Map[0]) &lt; 0.0001f) && (fabs(Map[1]-v.Map[1]) &lt; 0.0001f) && (fabs(Normal[0]-v.Normal[0]) &lt; 0.0001f) && (fabs(Normal[1]-v.Normal[1]) &lt; 0.0001f) && (fabs(Normal[2]-v.Normal[2]) &lt; 0.0001f) && (fabs(Position[0]-v.Position[0]) &lt; 0.0001f) && (fabs(Position[1]-v.Position[1]) &lt; 0.0001f) && (fabs(Position[2]-v.Position[2]) &lt; 0.0001f) ); }
inline	bool operator !=( const vxVertex &v ) const { return ( (fabs(Map[0]-v.Map[0]) &gt; 0.0001f)

hey! i’ve got a problem which most of you probaby have solved yet and as i’m stuck for days i thought i’d ask you :stuck_out_tongue:

this is my vertex struct:

</font><blockquote><font size=“1” face=“Verdana, Arial”>code:</font><hr /><pre style=“font-size:x-small; font-family: monospace;”>struct vxVertex
{
float Map[2];
float Normal[3];
float Position[3];

inline	bool operator ==( const vxVertex &v ) const { return ( (fabs(Map[0]-v.Map[0]) &lt; 0.0001f) && (fabs(Map[1]-v.Map[1]) &lt; 0.0001f) && (fabs(Normal[0]-v.Normal[0]) &lt; 0.0001f) && (fabs(Normal[1]-v.Normal[1]) &lt; 0.0001f) && (fabs(Normal[2]-v.Normal[2]) &lt; 0.0001f) && (fabs(Position[0]-v.Position[0]) &lt; 0.0001f) && (fabs(Position[1]-v.Position[1]) &lt; 0.0001f) && (fabs(Position[2]-v.Position[2]) &lt; 0.0001f) ); }
inline	bool operator !=( const vxVertex &v ) const { return ( (fabs(Map[0]-v.Map[0]) &gt; 0.0001f)

argh whats wrong with the forum?! i get logged out as soon as i want to edit my posts :frowning: and only the first lines are saved Oo

I think the problem is that the forum cuts posts whenever you put || in your code…

d’oh… crap.
so could one of the mods plz delete these two threads so that i can start over once again? ^^ thx…