• Joined on 2023-12-13
sw-tya commented on issue blender/blender-addons#105108 2024-01-17 22:41:06 +01:00
Loop Tool not working

Can you link to the tutorial you are trying to follow please.

sw-tya commented on issue blender/blender#114649 2024-01-16 10:10:00 +01:00
Boolean not working on cylinders and cones

I don't know the intent of the original complex shape, results can be improved by: Running Mesh -> Clean Up -> Degenerative Dissolve a few times. After this convert the mesh to triangles using…

sw-tya commented on issue blender/blender-addons#104657 2024-01-15 21:46:48 +01:00
Boolean Add On and Modifier Bug

The above instructions to use Join causes an object to be created that is formed from two separate meshes.

From the joined object, enter edit mode:

  1. Select any one face, the select linked…
sw-tya commented on issue blender/blender#114649 2024-01-12 21:31:20 +01:00
Boolean not working on cylinders and cones

This might be similar to: blender/blender-addons#104657

Where I've just observed disappearing source object using 3.6.7. I have a few other versions…

sw-tya commented on issue blender/blender-addons#104657 2024-01-12 21:19:04 +01:00
Boolean Add On and Modifier Bug

After some more playing around I don't think this is a problem with the Addon. The same situation can be caused with just the core blender feature set Boolean is supplied as part of the built in…

sw-tya commented on issue blender/blender-addons#104657 2024-01-12 02:07:18 +01:00
Boolean Add On and Modifier Bug

3.6.7 => has issue 3.6.3 => has issue 3.4.0 => has issue

3.0.1 => Has warning when opening file about version, but issue not observed. When inspecting the Modifier I get a warning "Compiled…

sw-tya commented on issue blender/blender-addons#105099 2024-01-10 21:37:32 +01:00
No aparece 3D-Print Toolbox

It might be similar to: blender/blender-addons#105049

sw-tya commented on issue blender/blender-addons#100813 2024-01-10 01:42:14 +01:00
Addons. Tiny CAD makes circle with spare vertex

Minimal steps to re-create:

  1. Edit, Preferences, Add-ons, enable "Mesh: tinyCAD Mesh Tools"
  2. File, New, General
  3. Delete cube
  4. Set view (7): Top Orthographic
  5. Add, Mesh, Circle 6.…
sw-tya commented on issue blender/blender-addons#104489 2024-01-07 20:17:59 +01:00
Auto Mirror addon irreversibly deletes geometry in close proximity to the mirror line

Hi. I can confirm that this is still indeed the case with Blender 3.6.7 using the updated Addon version 2.5.4. I'm assuming that the desired output is an object that is mirrored about the twin…

sw-tya commented on issue blender/blender-addons#105062 2024-01-05 01:18:46 +01:00
F2 Closes the software

Blender 3.6.7 on Linux works as expected, no crash.

sw-tya commented on issue blender/blender-addons#103915 2024-01-04 23:59:34 +01:00
[BUG] Drivers: References to an element of a CollectionProperty are not persistent

I have just tried this and confirm the described broken behaviour in: 3.4.0 - released - Linux x86 3.6.3 - released - Linux x86 3.6.7 - local build

My hardware will not run version…

sw-tya commented on issue blender/blender-addons#105069 2024-01-03 23:55:44 +01:00
How is it works?
sw-tya created pull request blender/blender-addons#105083 2023-12-24 17:57:29 +01:00
WIP: white space changes to BoltFactory to fix flake8
sw-tya pushed to flake8_bolts at sw-tya/blender-addons 2023-12-24 00:11:44 +01:00
e2afa84d7c Flake8 to fix all white space issues. This file is interpreter identical using: ast.dump(ast.parse(contents)) before and after.
b7c2153fa2 Flake8 to fix all white space issues. This file is interpreter identical using: ast.dump(ast.parse(contents)) before and after.
7ca6e57075 Flake8 to fix all white space issues. This file is interpreter identical using: ast.dump(ast.parse(contents)) before and after.
Compare 3 commits »
sw-tya created branch flake8_bolts in sw-tya/blender-addons 2023-12-24 00:11:43 +01:00
sw-tya created repository sw-tya/blender 2023-12-23 21:47:23 +01:00
sw-tya created repository sw-tya/blender-addons 2023-12-23 21:25:49 +01:00
sw-tya commented on issue blender/blender-addons#84071 2023-12-15 22:54:36 +01:00
Bolt Factory: Holes in geometry with different number of subdisivions

Here is my attempt at a solution. It works by adding an extra ring in the model mapping from the fixed number of points used to generate the Nut and the variable number of points specified in the…

sw-tya opened issue blender/blender-addons#105068 2023-12-15 21:50:27 +01:00
Bolt Factory Addon: Incorrect countersink angle & head size in Create_CounterSink_Head()
sw-tya commented on issue blender/blender-addons#105066 2023-12-14 17:34:42 +01:00
Bolt Factory Addon: RemoveDoubles() improvements

Here is the code that I used to remove duplicate faces. Insert just before the return of RemoveDoubles() myFinallist = [] for i in new_faces: if i not in myFinallist: myFinallist.append(i) ne…