--
cadquery home: https://github.com/dcowden/cadquery
post issues at https://github.com/dcowden/cadquery/issues
run it at home at : https://github.com/jmwright/cadquery-freecad-module
see it in action at http://www.parametricparts.com
---
You received this message because you are subscribed to the Google Groups "CadQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cadquery+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cadquery/c6390074-3dde-41e8-af91-1881932ec36d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
import cadquery as cq
from cadquery import selectors
result = cq.Workplane('XY').rect(10.0, 10.0).extrude(2.0) \
.faces('>Z').circle(2.0).extrude(5.0) \
.faces('<Z[1]').edges(selectors.NearestToPointSelector((0.0, 0.0))) \
.fillet(0.1)
show_object(result)
import cadquery as cq
result = cq.Workplane('XY').rect(10.0, 10.0).extrude(2.0)\
.faces('>Z').circle(2.0).extrude(5.0)\
.faces('<Z[1]').edges('%Circle')\
.chamfer(0.5,1)
show_object(result)--
cadquery home: https://github.com/dcowden/cadquery
post issues at https://github.com/dcowden/cadquery/issues
run it at home at : https://github.com/jmwright/cadquery-freecad-module
see it in action at http://www.parametricparts.com
---
You received this message because you are subscribed to the Google Groups "CadQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cadquery+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/cadquery/9a334150-1987-44b9-b40a-c10f671587aa%40googlegroups.com.
I think this case would make a good addition to the online documentation.It shows a real world and non-trivial selector use case with two different solutions.Dan
Thanks Jeremy and Adam !--The more I dive in CadQuery, the more I think that the most important thing I have to learn is how to use the selectors to "navigate" in my models.Thanks a lot for your help, I am now a little bit better at playing with those :-).
cadquery home: https://github.com/dcowden/cadquery
post issues at https://github.com/dcowden/cadquery/issues
run it at home at : https://github.com/jmwright/cadquery-freecad-module
see it in action at http://www.parametricparts.com
---
You received this message because you are subscribed to the Google Groups "CadQuery" group.
To unsubscribe from this group and stop receiving emails from it, send an email to cadquery+unsubscribe@googlegroups.com.