* change translate & scale to be better & docs Signed-off-by: Jess Frazelle <github@jessfraz.com> * autocomplete Signed-off-by: Jess Frazelle <github@jessfraz.com> * gen std Signed-off-by: Jess Frazelle <github@jessfraz.com> * kcl-samples Signed-off-by: Jess Frazelle <github@jessfraz.com> * updates Signed-off-by: Jess Frazelle <github@jessfraz.com> --------- Signed-off-by: Jess Frazelle <github@jessfraz.com>
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| export boltDiameter = 0.625
 | |
| export boltLength = 2.500
 | |
| export boltHeadLength = boltDiameter
 | |
| export boltHeadDiameter = 0.938
 | |
| export boltHexDrive = 1 / 2
 | |
| export boltHexFlatLength = boltHexDrive / (2 * cos(toRadians(30)))
 | |
| export boltThreadLength = 1.75
 | |
| 
 | |
| export fn bolt() {
 | |
|   // Create the head of the cap screw
 | |
|   boltHead = startSketchOn('XZ')
 | |
|     |> circle(center = [0, 0], radius = boltHeadDiameter / 2, tag = $topEdge)
 | |
|     |> extrude(length = -boltHeadLength)
 | |
|     |> fillet(radius = 0.020, tags = [topEdge, getOppositeEdge(topEdge)])
 | |
| 
 | |
|   // Define the sketch of the hex pattern on the screw head
 | |
|   hexPatternSketch = startSketchOn(boltHead, 'start')
 | |
|     |> startProfileAt([
 | |
|          boltHexDrive / 2,
 | |
|          boltHexFlatLength / 2
 | |
|        ], %)
 | |
|     |> angledLine({
 | |
|          angle = 270,
 | |
|          length = boltHexFlatLength
 | |
|        }, %)
 | |
|     |> angledLine({
 | |
|          angle = 210,
 | |
|          length = boltHexFlatLength
 | |
|        }, %)
 | |
|     |> angledLine({
 | |
|          angle = 150,
 | |
|          length = boltHexFlatLength
 | |
|        }, %)
 | |
|     |> angledLine({
 | |
|          angle = 90,
 | |
|          length = boltHexFlatLength
 | |
|        }, %)
 | |
|     |> angledLine({
 | |
|          angle = 30,
 | |
|          length = boltHexFlatLength
 | |
|        }, %)
 | |
|     |> close()
 | |
|     |> extrude(length = -boltHeadLength * 0.75)
 | |
| 
 | |
|   boltBody = startSketchOn(boltHead, 'end')
 | |
|     |> circle(center = [0, 0], radius = boltDiameter / 2, tag = $filletEdge)
 | |
|     |> extrude(length = boltLength)
 | |
|     |> fillet(radius = .020, tags = [getOppositeEdge(filletEdge)])
 | |
|     |> appearance(color = "#4dd043", metalness = 90, roughness = 90)
 | |
| 
 | |
|   return boltBody
 | |
| }
 | |
| 
 | |
| bolt()
 | |
|   |> translate(x = 10, y = 0, z = 0)
 | |
| 
 | |
| // https://www.mcmaster.com/91251a404/
 |