Bug introduced in 10.0.0 and fixed in 10.0.2
Consider the following ImplicitRegion:
reg = ImplicitRegion[x^2 + y^2 + z^2 == 16, {x, y, z}];
We can discretize it using DiscretizeRegion
dr = DiscretizeRegion[reg]

To get finer triangles the option MaxCellMeasure is available, only it does nothing when used.
DiscretizeRegion[reg, MaxCellMeasure -> {"Area" -> #}] & /@ {0.1, 0.05}

Of course using one of the Graphics primitives
DiscretizeRegion[Ball[], MaxCellMeasure -> {"Area" -> #}] & /@ {0.1, 0.05}

You can see that it works fine. I'm on Windows 8.1, can anyone confirm this on other platforms? Confirmed on Linux via the Wolfram Programming Cloud.




PrecisionGoal,AccuracyGoal,MeshQualityGoal, andMeshRefinementFunctionon theImplicitRegionsimilarly has no effect. – Michael E2 Aug 05 '14 at 12:29