Joining two lines(3D) with a circular arc fillet

  • Thread starter Thread starter velanvela
  • Start date Start date
  • Tags Tags
    Arc Circular
AI Thread Summary
The discussion centers on finding mathematical expressions for the start, end, and center of a circular arc fillet connecting two non-coplanar lines in 3D space. The original poster, Velan, seeks to implement this solution in a C program. However, a key point raised is that if the lines are not coplanar, a tangent arc that connects them may not exist. This highlights the geometric constraints of the problem, emphasizing the necessity for coplanarity for a valid fillet. The conversation underscores the importance of understanding the spatial relationships between the lines involved.
velanvela
Messages
3
Reaction score
0
Hi all,
I have two lines in three dimensional form [P1(x1,y1,z1),P2(x2,y2,z2), and P3(x3,y3,z3), P4(x4,y4,z4) ] joined by a fillet, with known radius. i want to know the, start of the fillet(bend), end of the fillet, center of the fillet in a mathematical expression. with the above solution, i can formulate in a C program for further use. Thanks in advance.

regards
velan
 
Physics news on Phys.org
Please read or at least glimpse over all the stickies in the sub-forums for which you post for the first time. Problems like these belong in the homework help subforums.
 
Hi all,
I have two lines in three dimensional form [P1(x1,y1,z1),P2(x2,y2,z2), and P3(x3,y3,z3), P4(x4,y4,z4) ] joined by a fillet, with known radius. i want to know the, start of the fillet(bend), end of the fillet, center of the fillet in a mathematical expression. with the above solution, i can formulate in a C program for further use. Thanks in advance.

regards
velan
 
Hi velanvelam, are the two lines assumed to be co-planar (that is, are they known to intersect).
 
Last edited:
If by fillet you mean an arc segment tangent to the two segments, what makes you think such a thing even exists if the two segments aren't coplanar?
 
No, the two lines are not in the same plane.

regards
velan
 
Since this is also posted in the homework thread, I am joining the two.
 
velanvela said:
No, the two lines are not in the same plane.

regards
velan

The arc itself defines a plane. If the two segments are not coplanar then the arc can't be tangent to both.
 
Back
Top