Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-12Better comments and fixing implicit precision conversion warnings.bevelv2Howard Trickey
2022-11-05Fix a bug re slope on vertex events.Howard Trickey
When insetting a square face with a slope, not all center vertices got raised. This fixes that. Also disabled the grid inset test, which doesn't work yet.
2022-09-20Initialize slope in mesh inset tests.Howard Trickey
Also some format fixes, removal of unused functions, and fix of a potential infinite loop in vertex normal calculation.
2022-09-15Add slope parameter to mesh_inset and use that in face bevel.Howard Trickey
2022-09-12Fix mesh_inset to recover leftofer interior geometry.Howard Trickey
2022-09-11Initial hook up of face bevel to geometry nodes.Howard Trickey
Only works for individual face insets (bevels) so far, and doesn't preserve attributes yet.
2022-09-08Added a mesh_inset Blenlib function.Howard Trickey
Based on python code from Henrik Dick, this libray function calculates a Straight Skeleton, and hence, deals properly with cases where the advancing inset geometry would overlap or pass through opposite edges. It still needs work but the basic tests pass. This function will be used for edge and face bevels but is not yet hooked up for that.