FIXED:Incorrect documentation - Geometry COMP

Caught a small error on the wiki for the Geometry COMP Class page

I believe this piece about computeBounds()

a=op('/project1/geo1').computeBounds()
print(a.minx)

Should actually be:

a=op('/project1/geo1').computeBounds()
print(a.min.x)

Small error, but instead of minx I think this should be min.x

Easy one’s are always great, right?

Good catch. Thanks! Fixed

1 Like