Hi John,
Did you find any solution. I am also looking for this. I have posted similar kind of question here...and unfortunately no replies from ESRI.
here is my question..
https://community.esri.com/message/420864#420864
Thanks,
Sirish
Hi SIrish,
Sorry for the delay on this.
The point collection of the multipatch can be found by creating a new IPointCollection4 and then looping through the geometries and typing each geometry to the pointcollection.
for (int i = 0; i < multiPatchGeometryCollection.GeometryCount; i++)
{
//here i want to know each geomteries Triangles count and it vertices
pPtColl = new Ring;
pGeom = multiPatchGeometryCollection.Geometry(i);
pPtColl = (IPointCollection4)pGeom;
// Cycle through the points pPtColl
}
Sorry for the late reply to this.
Thank you very much. It works.
Thanks
Les membres connectés peuvent publier, suivre les mises à jour, et plus encore. Nouveau ici ? Inscrivez-vous gratuitement.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.