Method
ModifyFloat3AttributeParallel
(atr string, f func(i int, v vector3.Float64) vector3.Float64)
Source from the content-addressed store, hash-verified
| 651 | } |
| 652 | |
| 653 | func (m Mesh) ModifyFloat3AttributeParallel(atr string, f func(i int, v vector3.Float64) vector3.Float64) Mesh { |
| 654 | return m.ModifyFloat3AttributeParallelWithPoolSize(atr, runtime.NumCPU(), f) |
| 655 | } |
| 656 | |
| 657 | func (m Mesh) ModifyFloat3AttributeParallelWithPoolSize(atr string, size int, f func(i int, v vector3.Float64) vector3.Float64) Mesh { |
| 658 | m.requireV3Attribute(atr) |