I was going to do something like this:<br><br>    class PTXPoint<br>    {<br>        public:<br>            typedef itk::Point&lt;double, 3&gt; PointType;<br>            typedef itk::RGBPixel&lt;unsigned char&gt; ColorType; //note: the ptx format uses unsigned chars for color<br>
    <br>            PointType Point;<br>            ColorType Color;<br>            double Intensity;<br>            <br>    };<br><br>And then create a mesh of the new PTXPoint type:<br>typedef itk::Mesh&lt;PTXPoint, 3&gt;  MeshType;<br>
<br>But that doesn&#39;t make sense, because the dimensionality of the coordinates is already defined inside PTXPoint. I really just want a <br>typedef itk::Mesh&lt;double, 3&gt;  MeshType;<br><br>but where each point in the mesh has a Color and Intensity associated with it. What&#39;s the best way to do that?<br>
<br clear="all">Thanks,<br><br>David<br>