Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
ImplicitCAD.org (beta)
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  9 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Christopher Olah  
View profile  
 More options Sep 21 2012, 6:49 pm
From: Christopher Olah <christopherolah...@gmail.com>
Date: Fri, 21 Sep 2012 18:49:49 -0400
Local: Fri, Sep 21 2012 6:49 pm
Subject: ImplicitCAD.org (beta)
Hey All,

Please don't post this anywhere prominent, but I'd be thrilled to have
you test the web version of ImplicitCAD: www.implicitcad.org.

A gigantic thank you is due to Rob Gilson who made the beautiful web
interface for ImplicitCAD.

I'm also grateful to Rob's employer, Dream Forge, which has provided
an EC2 instance to accelerate rendering of objects. And to the Haskell
community for awesome libraries and helpful advice.

Please respond with any problems you run into!

Chris


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Sep 28 2012, 2:55 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Fri, 28 Sep 2012 11:55:11 -0700 (PDT)
Local: Fri, Sep 28 2012 2:55 pm
Subject: Re: ImplicitCAD.org (beta)

I'll look at it soon-ish . :)

Lance


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Sep 30 2012, 10:18 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Sun, 30 Sep 2012 19:18:53 -0700 (PDT)
Local: Sun, Sep 30 2012 10:18 pm
Subject: Re: ImplicitCAD.org (beta)

Can't get translate to work. Here's the code I'm working with:

module Post()
{
    difference()
    {
        cylinder(r=8,h=28);
        cylinder(r=4,h=30);
    }

}

//translate([28,0]) Post();
//translate([-28,0]) Post();

translate([28.5,0])
  difference(){
    cylinder(r=8,h=28);
    cylinder(r=4,h=30);}

translate([-28.5,0])
  difference(){
    cylinder(r=8,h=28);
    cylinder(r=4,h=30);}

The commented out section is my first attempt. Then I tried long hand.

Nothing fancy used yet... :)

Lance


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Olah  
View profile  
 More options Sep 30 2012, 11:07 pm
From: Christopher Olah <christopherolah...@gmail.com>
Date: Sun, 30 Sep 2012 23:07:33 -0400
Local: Sun, Sep 30 2012 11:07 pm
Subject: Re: ImplicitCAD.org (beta)
It isn't that translate doesn't work. It's that fixing semantic
insanity of openscad means there isn't any implicit union. So use the
following instead:

union(){
translate([28,0]) Post();
translate([-28,0]) Post();

}

On Sun, Sep 30, 2012 at 10:18 PM, Lance F. Squire <glankon...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Oct 1 2012, 9:03 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Mon, 1 Oct 2012 18:03:57 -0700 (PDT)
Local: Mon, Oct 1 2012 9:03 pm
Subject: Re: ImplicitCAD.org (beta)

I wasn't aware any unioning was happening.

I just wanted to see if they looked right before placing another piece.

I had recently found on someone elses script that outputting two connected
object would create a joined stl.

But I didn't think that was proper.

Wouldn't have thought unioning would be needed for two (currently) separate
parts either.

Will continue with your suggestion.

Thanks,

Lance


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Oct 1 2012, 9:12 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Mon, 1 Oct 2012 18:12:51 -0700 (PDT)
Local: Mon, Oct 1 2012 9:12 pm
Subject: Re: ImplicitCAD.org (beta)

Ok,

New weird thing.

I have to give either the difference of the union a parameter of 1 or the
holes don't go all the way through...

Lance


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Oct 1 2012, 10:23 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Mon, 1 Oct 2012 19:23:54 -0700 (PDT)
Local: Mon, Oct 1 2012 10:23 pm
Subject: Re: ImplicitCAD.org (beta)

Adding a cube to the mix, and rounding the junctions, I get some nice
sweeps on the top side.

However, I'm getting some strangeness on the bottom where it needs to be
flat. :(

Code:
union(5)
{
    translate([28,0]) Post();
    translate([-28,0]) Post();
    translate([-30,5]) cube([60,100,10]);

}

Am I going to have to make it a little thicker than planned then use a
difference to smooth the bottom?

Lacne


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Lance F. Squire  
View profile  
 More options Oct 2 2012, 10:00 pm
From: "Lance F. Squire" <glankon...@gmail.com>
Date: Tue, 2 Oct 2012 19:00:19 -0700 (PDT)
Local: Tues, Oct 2 2012 10:00 pm
Subject: Re: ImplicitCAD.org (beta)

This code produces Interesting and unexpected results.

  union(5)
  {
    cylinder(r=6.25, h=87);
      translate([0,30,0])
        rotate(a=[19,0,0])
        {
            cylinder(r=6.25, h=90);
        }
  }


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christopher Olah  
View profile  
 More options Oct 3 2012, 4:18 am
From: Christopher Olah <christopherolah...@gmail.com>
Date: Wed, 3 Oct 2012 04:18:23 -0400
Local: Wed, Oct 3 2012 4:18 am
Subject: Re: ImplicitCAD.org (beta)
Hey Lance,

Thanks for playing around with this. I think what you've really
unveiled is that I don't have good enough documentation. This is a big
failing that I need to address.

Your problems earlier were due to too low a rendering quality. Add
$quality=8; and things should work better.

The bug with rotate is known and I really need to fix it.

Sorry about delayed responses, I was on a retreat.

All the best,

Chris

On Tue, Oct 2, 2012 at 10:00 PM, Lance F. Squire <glankon...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »