usfreitas
  • Joined on 2024-02-17
usfreitas created repository usfreitas/blender-manual 2024-03-30 18:11:23 +01:00
usfreitas deleted branch hollow from usfreitas/blender-addons 2024-03-18 12:59:17 +01:00
usfreitas commented on pull request blender/blender-addons#105194 2024-03-18 11:36:15 +01:00
3D Print Toolbox: Add hollow out

Unless there is a definitive enough way to tell apart offset too big and closed mesh cases, I think we should just stick to ambiguous warning. Otherwise, we risk misinforming the user.

Agr…

usfreitas pushed to hollow at usfreitas/blender-addons 2024-03-18 11:26:33 +01:00
fe33b8edf2 Add error message for when OpenVDB returns empty mesh, stop processing
usfreitas commented on pull request blender/blender-addons#105194 2024-03-18 08:48:14 +01:00
3D Print Toolbox: Add hollow out

Well, I could not find something very informative in the OpenVDB docs. The only thing I could find is that a closed surface is needed.

So I went for some tests. I added print(levelset.info(5))

usfreitas commented on pull request blender/blender-addons#105194 2024-03-17 20:11:23 +01:00
3D Print Toolbox: Add hollow out

Good catch. I've mostly ignored failure conditions.

The first reason is due to too large an offset. The other reason is when the mesh does not define a closed space. I think those conditions…

usfreitas commented on pull request blender/blender-addons#105194 2024-03-17 08:08:17 +01:00
3D Print Toolbox: Add hollow out

With the separator it looks definitely better.

I think the preset is useful because of my points about the default voxel size. If a user has a setup where this default isn't appropriate, having…

usfreitas commented on pull request blender/blender-addons#105194 2024-03-17 08:03:03 +01:00
3D Print Toolbox: Add hollow out

I did not understand what you meant by "expand". Now I know, and it looks really better. The separator also helps.

usfreitas commented on pull request blender/blender-addons#105194 2024-03-17 08:00:31 +01:00
3D Print Toolbox: Add hollow out

Sorry, my bad. It should be fixed now.

usfreitas pushed to hollow at usfreitas/blender-addons 2024-03-17 07:59:17 +01:00
c3053a2167 Add operator draw function, correct enum values and string delimiters
usfreitas commented on pull request blender/blender-addons#105194 2024-03-16 19:22:01 +01:00
3D Print Toolbox: Add hollow out

I'm sorry about you being sick. I hope when you will be already fully recovered when you read this.

This time I implemented all suggestions. At least I hope. Last time a wrong default flew by...…

usfreitas pushed to hollow at usfreitas/blender-addons 2024-03-16 19:03:20 +01:00
0e9582d3b7 Remove scene properties, add enum and preset
usfreitas pushed to hollow at usfreitas/blender-addons 2024-03-16 18:18:36 +01:00
913618d0a2 Merge branch 'main'
826bc82674 Merge branch 'blender-v4.1-release'
cb47131263 glTF exporter: Regression: Fix crash when exporting with Images: None option
377f6b6499 Export_3ds: Export keyframes by default
a4560eb547 io_scene_3ds: Export keyframes by default
Compare 14 commits »
usfreitas pushed to main at usfreitas/blender-addons 2024-03-16 18:07:19 +01:00
826bc82674 Merge branch 'blender-v4.1-release'
cb47131263 glTF exporter: Regression: Fix crash when exporting with Images: None option
377f6b6499 Export_3ds: Export keyframes by default
a4560eb547 io_scene_3ds: Export keyframes by default
2a9e718930 Import_x3d: Fixed light radius variable
Compare 13 commits »
usfreitas commented on pull request blender/blender-addons#105194 2024-03-13 17:58:46 +01:00
3D Print Toolbox: Add hollow out

I've committed some code. I've tried to make all the suggested changes, with some exceptions:

  • Default voxel size is 1.0
  • Offset now is only positive. Direction is indicated by a new boolean…
usfreitas pushed to hollow at usfreitas/blender-addons 2024-03-13 17:27:46 +01:00
f9f897a6d7 UI simplification, change properties, still saves properties in scene
8cd3ab9f94 Merge branch 'main' into hollow
774686bb99 Fix #97652: Show error exporting objects when none are selected
5a8c9161e5 glTF Exporter: Base of export extra animation
570afbc795 glTF Exporter: Broacast animation option
Compare 21 commits »
usfreitas commented on pull request blender/blender-addons#105194 2024-03-12 22:14:13 +01:00
3D Print Toolbox: Add hollow out

I'm actually pretty comfortable around matrices. I had a good training in linear algebra, and I've been using NumPy way longer than Blender.

I was looking for something like `obj_hollow.matrix_wo…

usfreitas commented on pull request blender/blender-addons#105194 2024-03-12 20:58:48 +01:00
3D Print Toolbox: Add hollow out

This is cool! I did not know about it. I much prefer the dialog, as the operator UI can then be just a button.

Duplication of the operator settings is a pattern that occur often in the 3D-Print…

usfreitas pushed to main at usfreitas/blender-addons 2024-03-12 20:10:43 +01:00
774686bb99 Fix #97652: Show error exporting objects when none are selected
5a8c9161e5 glTF Exporter: Base of export extra animation
570afbc795 glTF Exporter: Broacast animation option
ee438304b4 glTF Exporter: Animation perf - disable viewport when possible
aec9cb59c4 glTF Exporter: add NodeNav tool for navigating node trees
Compare 19 commits »
usfreitas commented on pull request blender/blender-addons#105194 2024-03-12 19:48:33 +01:00
3D Print Toolbox: Add hollow out

I'm back.

Regarding offset sign, I would rather go with an unsigned thickness parameter and a direction switch toggle, instead of just flipping the sign. I think it would be easier for users to…