Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
openscad
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Tetov Johansson
openscad
Commits
ae7c4634
Verified
Commit
ae7c4634
authored
Aug 30, 2022
by
Anton Tetov Johansson
Browse files
Options
Downloads
Patches
Plain Diff
needs some markings for orientation and coordinate frame
parent
29983cbb
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
pointy_tool.scad
+35
-0
35 additions, 0 deletions
pointy_tool.scad
rsp_tc20_p102_clone.scad
+8
-14
8 additions, 14 deletions
rsp_tc20_p102_clone.scad
with
43 additions
and
14 deletions
pointy_tool.scad
0 → 100644
+
35
−
0
View file @
ae7c4634
include <rsp_tc20_p102_clone.scad>
SHAFT_RADIUS = 5;
TOTAL_LENGTH_WITH_CHANGER = 75;
BASE_HEIGHT = 5;
TIP_HEIGHT = 10;
$fn = 100;
module pointy_tool()
{
union() {
rsp_tc20_p102_clone();
// base
cylinder(h = BASE_HEIGHT, r1 = RSP_TC20_P102_CLONE_TOTAL_RADIUS, r2 = SHAFT_RADIUS, center = false);
translate([0, 0, BASE_HEIGHT]) {
// body
body_height = TOTAL_LENGTH_WITH_CHANGER - RSP_TC20_P102_CLONE_TOTAL_HEIGHT - TIP_HEIGHT - BASE_HEIGHT;
cylinder(h = body_height, r = SHAFT_RADIUS, center=false);
translate([0, 0, body_height])
{
// tip
cylinder(h=TIP_HEIGHT, r1 = SHAFT_RADIUS, r2 = 0);
}
}
}
}
pointy_tool();
\ No newline at end of file
This diff is collapsed.
Click to expand it.
rsp_tc20_p102_clone.scad
+
8
−
14
View file @
ae7c4634
// RSP TC20 p102 clone
// RSP TC20 p102 clone
side = 64;
RSP_TC20_P102_CLONE_TOTAL_RADIUS = 64 / 2;
sideLong = 94;
RSP_TC20_P102_CLONE_HEIGHT_CHANGER = 12;
sqHeight = 12;
RSP_TC20_P102_CLONE_TOTAL_HEIGHT =RSP_TC20_P102_CLONE_HEIGHT_CHANGER + 4;
cylHeight = 4;
$fn = 100;
$fn = 100;
module
module
cylBody(
side
, height)
cylBody(
radius
, height)
{
{
$fn = 360;
$fn = 360;
translate([ 0, 0, height / 2 ])
translate([ 0, 0, height / 2 ])
{
{
cylinder(h = height, r1 =
side / 2, r2 = side / 2
, center = true);
cylinder(h = height, r1 =
radius, r2 = radius
, center = true);
}
}
}
}
...
@@ -66,9 +65,7 @@ slantedCylx4()
...
@@ -66,9 +65,7 @@ slantedCylx4()
module
module
rsp_tc20_p102_clone()
rsp_tc20_p102_clone()
{
{
translate([ 0, 0, (sqHeight + cylHeight) ])
rotate([ 0, 180, 0 ])
{
rotate([ 180, 0, 0 ])
{
{
difference()
difference()
{
{
...
@@ -79,9 +76,7 @@ rsp_tc20_p102_clone()
...
@@ -79,9 +76,7 @@ rsp_tc20_p102_clone()
// assign($fn = 100);
// assign($fn = 100);
union()
union()
{
{
// sqBody(side,sqHeight);
cylBody(RSP_TC20_P102_CLONE_TOTAL_RADIUS, RSP_TC20_P102_CLONE_TOTAL_HEIGHT);
// sqBodyLong(sideLong,side,sqHeight);
cylBody(side, sqHeight + cylHeight);
}
}
// vvvvvvvv add these rows again for standard
// vvvvvvvv add these rows again for standard
// toolchanger ^^^^^
// toolchanger ^^^^^
...
@@ -109,6 +104,5 @@ rsp_tc20_p102_clone()
...
@@ -109,6 +104,5 @@ rsp_tc20_p102_clone()
}
}
}
}
}
}
}
rsp_tc20_p102_clone();
//
rsp_tc20_p102_clone();
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment