Search results for all lists

10000 messages found
Sort by
List: discuss@lists.openscad.org
From: amundsen
 
Using recursion to create smoothed random variation ("red" noise)
Wed, Oct 21, 2020 12:22 AM
Hello, I am trying to use a recursive function within a list comprehension to add some random component to both x and y coordinates of each point in a polygon (a circle actually). However I want each random component to be based on the previous random value in order to smooth the random component (and get some king of brownian/red noise).
List: discuss@lists.openscad.org
From: wangerin
 
Re: [OpenSCAD] How to find the current x, y, z location
Fri, Feb 28, 2020 3:51 PM
Having x,y,z would be ok for me, but having all other details as rotations and scale wouldn't hurt. Some time ago I made a model of a IKEA-kitchen, that echoed a complete list of what I had put into my model.
List: great-loop@lists.trawlering.com
From: jonathan olenick
 
Re: GL: PLEASE READ: Re: Y valve lockout
Mon, Feb 18, 2008 1:08 AM
. ----- Original Message ---- From: Mike Tellup To: great-loop@lists.samurai.com Sent: Sunday, February 17, 2008 8:44:59 AM Subject: GL: PLEASE READ: Re: Y valve lockout All Hands, This thread is starting to get out of control, but I don't want to stop the discussion.
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
module for rotating an object around any axis is required
Thu, Mar 23, 2023 2:44 AM
[point.x,point.y,0]:point], pq=[p.x*q.x-p.y*q.y,p.x*q.y+p.y*q.x+cross(p.y,q.y)], pqp1=[pq.x*p1.x-pq.y*p1.y,pq.x*p1.y+pq.y*p1.x+cross(pq.y,p1.y)], transformation=pqp1.y ) transformation ; // function is input to another function q_rot function qmr1(s,r,pl,n=0)= n==len(s)?pl: qmr1(s,r, let( v1=s[n]=="x"?[1,0,0]:s[n]=="y"?
List: trawlers@lists.trawlering.com
From: seafred@home.com
 
Windy 26
Fri, Sep 3, 1999 11:28 PM
Came across a Windy 26 for sale at a price that might just fit my budget. Realize it's not a MT 49 or anything but it might be a start as a one-person boat (no trans-ocean ambitions). Is there a web site where I might find more info? Any feedback on this vessel (1985 - bow thrusters-Volvo diesel-refridg for $56,900 CAD) would be appreciated.
List: discuss@lists.openscad.org
From: Ronaldo Persiano
 
Re: [OpenSCAD] dynamic FOR statement
Sun, Nov 13, 2016 2:37 PM
[[R*cos(w),R*sin(w)]]: > > (w<180)? [[R*cos(w),R*sin(w)]]: > > (w==180)? > > [[R*cos(w),R*sin(w)],[R*cos(w)+1,R*sin(w)],[R*cos(w)+1,R* > sin(w)+1],[R*cos(w),R*sin(w)+1]]: > > (w<270)?
List: discuss@lists.openscad.org
From: mikeonenine@web.de
 
Re: sinwave glass
Sat, Aug 26, 2023 11:19 PM
12.5 mb , so here is the link > > https://github.com/sprabhakar2006/openSCAD/blob/main/sinwave_glass.scad > > > > 26 at 9.24.41 AM.png> > > > > Slightly smaller scadfile: > > > > include > > h = 100; > > r = 30; > > wall = 1; > > n = h/5; > > tscale = 1; > > tex = \[ > > for (i=\[0:31\]) \[ > > for (j=\[0:31\]) > > sin(i/32
List: pjsip@lists.pjsip.org
From: Soh Wei Sin
 
Re: [pjsip] pjsua unregister upon register for ipv6 client
Tue, Mar 24, 2009 5:50 PM
Thanks Sincerely, ws ________________________________ From: Soh Wei Sin To: pjsip list Sent: Saturday, March 21, 2009 11:59:20 AM Subject: Re: [pjsip] pjsua unregister upon register for ipv6 client Hi Benny, The attached file is my log file.
List: discuss@lists.openscad.org
From: L Boyd
 
Internal treatment of common expressions
Thu, Jun 2, 2016 12:27 PM
A portion of my code, used many times, has the following segment: polyhedron( points = [ [cos(as)*Rroot, sin(as)*Rroot, z], //0 [cos(as)*Rtipp, sin(as)*Rtipp, z+z1], //1 [cos(as)*Rroot, sin(as)*Rroot, z+z2], //2 [cos(ae)*Rroot, sin(ae)*Rroot, z+zd], //3 [cos(ae)*Rtipp, sin(ae)*Rtipp, z+zd+z1], //4 [cos(ae)*Rroot, sin(ae)*Rroot, z+zd+z2
List: discuss@lists.openscad.org
From: Trygon
 
Re: [OpenSCAD] Wrapping text around a complex geometry
Thu, Aug 18, 2016 9:26 PM
However the vertex data can be re-mapped (non-affine transformation), for example: points2=[ for(i=points) [i[0],i[1]+5*sin(8*i[0]),4*i[2]] ]; polyhedron(points2,triangles); Using a suitable mapping the text can be wrapped around a surface: r1=20; points3=[ for(i=points) let(a=1.7*i[0],r=r1+2*i[2