Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • $\begingroup$ Do you know how to enter edit mode, select all vertices and apply the scale from there before exiting edit mode? It's important that the scale remain 1 on the actual object and the vertices actually be scaled from edit mode. $\endgroup$ Commented Jan 19, 2017 at 18:10
  • $\begingroup$ for v in obj.data.vertices: v.co *= scale; This scales all Vertices, not the object. The objects scale remains whatever it was. It is also faster (and more stable) than using "bpy.ops" and going into edit mode. You don't need edit mode to alter the mesh data in python. $\endgroup$ Commented Jan 19, 2017 at 18:17