jimy-byerley / pymadcad

Simple yet powerful CAD (Computer Aided Design) library, written with Python.
https://madcad.netlify.app/
GNU Lesser General Public License v3.0
205 stars 15 forks source link

chamfer question #86

Open xiaodongdong101 opened 11 months ago

xiaodongdong101 commented 11 months ago

If I input a more complex triangular mesh model, can I still chamfer the inner edges?

994f2184ed687c3d100e1c49552d935
jimy-byerley commented 11 months ago

Sure, chamfer and bevel functions are designed to cut not only adjacent triangles to the given edge, but to go through all the mesh triangles to acheive the desired cut surface.

The limitation to it is the presence of crossover edges in the mesh, the current chamfer algorithm cannot deal with crossover. chamfering flat edges may also not work depending of the cutter parameter you choose.

xiaodongdong101 commented 11 months ago

Could you help me test this model? I haven't configured your code environment yet cop_4_of_clip.zip

jimy-byerley commented 11 months ago

I can but what operation do you want to apply on it ? what is your problem with that mesh ?

xiaodongdong101 commented 11 months ago

Thanks a lot.Can you make bevel along a curved line? I want to see if it can handle a more special environment

xiaodongdong101 commented 11 months ago

Hello,I find that chamfer and bevel function are used in a straight edge. 581ade7f0a93e23f1e83555abaa5986 Can this algorithm be used for bevel and chamfers of curves? cbeea8a83f7ca3b9ae00d7b5f421093

jimy-byerley commented 11 months ago

Sure it can, tangentend is internally used only for each extremities of such curves

Here is a chamfer on the lower outer edge image

part = read('/tmp/cop_4_of_clip.stl')
part.mergeclose()
part = reverse.segmentation(part, tolerance=inf)
part.mergeclose()
part.check()
chamfer(part, part.frontiers(0, 1), ('width', 1))

My algorithm fails on the upper outer edge, I will have to inverstigate

xiaodongdong101 commented 11 months ago

Thanks a lot.Looking forward to your good news

xiaodongdong101 commented 11 months ago

If i want to choose any edge to bevel, how should I do it? Thanks a lot

jimy-byerley commented 11 months ago

Just like I wrote in my example, you have to provide a list of edges or a Web (by definition it contains a list of edges) for the edges you want to chamfer In my previous code sample I wrote part.frontiers(0, 1) to select the edges at the frontier between groups 0 and 1

Since your part is imported, it does not carry surface groups, so I added the segmentation step to automatically produce surface groups based on the surface curvature

# import your mesh, without surface groups and without connectivity
part = read('/tmp/cop_4_of_clip.stl')
# a STL file does not have connectivity informations, so here we merge similar points and connect triangles together, chamfering will then become possible
part.mergeclose()
# produce surface groups out of surface curvature, edge selection will then become possible
part = reverse.segmentation(part, tolerance=inf)
# execute chamfer
chamfer(part, part.frontiers(0, 1), ('width', 1))
xiaodongdong101 commented 11 months ago

Thank you very much for your reply.But I can't test other simple grid models, and I don't know if there is something wrong with my parameters. image Here is what he reported wrongly

9b1da104cf564eea21b4cab76decea1

This is the model that I input

6996be98ecc9e8e62a43811ae269a4e

Here is my input data test0812.zip

xiaodongdong101 commented 11 months ago

Why do I use the subdivided mesh model as input, but the result has no effect.

d11dec9a4c4c23f5a703f7795448f3e

cop_4_of_clip_1.zip

jimy-byerley commented 11 months ago

I think there is an issue with subdivided meshes, because it makes points in the middle of straight lines on the chamfered edges

xiaodongdong101 commented 11 months ago

Is there any better solution?Because the fine mesh model also has a complete topology,How should we solve this problem is better?

xiaodongdong101 commented 11 months ago

Hello,Why is the offset in the loop assigned multiple times?


for b in prox: for c in prox: a = junc if b == c or b == a or c == a: continue

calculer la distance

            ab = normalize(pts[b]-pts[a])
            ac = normalize(pts[c]-pts[a])
            n = cross(ab, ac)
            nb = cross(n, ab)
            nc = cross(ac, n)
            ob = offsets[edgekey(a,b)]
            oc = offsets[edgekey(a,c)]
            ib = dot(ob,ob) / dot(ob, nb)
            ic = dot(oc,oc) / dot(oc, nc)
            s = dot(nb,ac)
            if not s:   continue
            abl = (ib*dot(ab,ac) + ic) / s
            offset = dot(abl*ab + ib*nb, normals[a])

So how to save during the loop? https://pymadcad.readthedocs.io/en/latest/_modules/madcad/cut.html#bevel Does this offset value need to be accumulated multiple times?


a19a2dfca1f87fcfec0037106d1be74
jimy-byerley commented 10 months ago

Is there any better solution?Because the fine mesh model also has a complete topology,How should we solve this problem is better?

A better solution would be a better implementation in this case, this is a bug I should work on ;) but I need to find time for it.

Why is the offset in the loop assigned multiple times?

Don't forget to format the code you post in python code blocks, just as in regular makdown

I guess you are speaking of this line (don't forget just a code screenshot doesn't help much to understand where it is in the library).

I don't remember why I did this that way. you are right, maybe some accumulator is missing here, something like a min

xiaodongdong101 commented 10 months ago

Thanks a lot.