miMayaPlugins/randomPointOnMesh/README.md

5 lines
100 B
Markdown
Raw Normal View History

2024-10-01 19:59:07 +08:00
```python
pp = cmds.randomPointOnMesh(n=1000)
pList = [pp[i:i+3] for i in range(0, len(pp), 3)]
```