View Full Version : Q:Poly count
jadedchron 02-03-2003, 05:12 AM What is the method of finding out how many poly's an object has? I know.. dumb question :shrug:
|
|
fleedawg
02-03-2003, 05:40 AM
The best information I found is here:
http://www3.sk.sympatico.ca/kelbeau/max2ued/html/1.html
Basically, it tells how to add a polycounter button to the utilities menu. In short, it says to go to the configure option under the Util menu and increase the total number of buttons by one. Then from the list on the left, drag Polygon Counter to the empty button on the right. Then you have a pretty easy button to get to that pops up a poly counter.
jadedchron
02-03-2003, 05:41 AM
thanks duders.. gonna give it a whirl.
ah perfect.. thanks! :thumbsup:
Leo73
02-03-2003, 12:20 PM
Or you can just hit the number 7 key on the main keyboard and that will bring up a poly counter right in the viewport. Shortcut in Max 5
fleedawg
02-03-2003, 06:54 PM
I like that one better. Hadn't heard of that one. That's what I get when I don't RTFM. :blush:
jadedchron
02-03-2003, 08:32 PM
very nice, thanks
LFShade
02-03-2003, 11:12 PM
Be aware that Editable Poly objects will report the number of polygons, while Editable Mesh will report the number of triangles. If you're looking to export your models for (most) games, you'll want to keep an eye on the triangle count, so if you're working in EPoly just be aware that you'll need to convert to EMesh every once in a while for the triangle count.
Alternatively, you can add the following macroScript to your favorite shortcut, button, or quad. It'll report the number of triangles in the selected object, be it Epoly, Emesh, NURBS, or primitive. It displays the results on the status line rather than the viewport.
macroScript getTriCount
category:"MAX Script Tools"
toolTip:"Triangle Counter"
buttonText:"TriCount"
(
if selection.count == 1 and superClassOf selection[1] == geometryClass do
pushPrompt(($.mesh.numFaces as string) + " Triangles")
)
jadedchron
02-03-2003, 11:19 PM
even better. ..hey i grew up in portland ;)
LFShade
02-03-2003, 11:24 PM
Whereabouts? I've been here just a few years, in Clackamas.
jadedchron
02-04-2003, 01:01 AM
i grew up around gresham and burnside
CGTalk Moderation
01-14-2006, 08:00 AM
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.
vBulletin v3.0.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.