Search results for all lists

10000 messages found
Sort by
List: time-nuts@lists.febo.com
From: Bruce Griffiths
 
Re: [time-nuts] TADD-2 Mini Sine or Square signal input?
Wed, Nov 14, 2012 12:11 AM
Si usted no es el destinarario de este mensaje, le suplicamos se lo notifique al remitente mediante un correo electrónico y que borre el presente mensaje y sus anexos de su computadora sin retener una copia de los mismos.
List: discuss@lists.openscad.org
From: 张友宝
 
About Automatically Translating OpenSCAD Scripting Code into CadQuery Scripting Code (Python Code)
Sat, Feb 8, 2025 9:47 AM
= r2 * math.sin(theta)) part1 -= part2 part2 = cylinder(2 * 50, 12).moved(x = 0, y = 0) part1 -= part2 show(part1) ###########The CadQuery code end############# Best regards, Youbao
List: discuss@lists.openscad.org
From: Jordan Brown
 
Re: [OpenSCAD] How to work with images?
Wed, Mar 3, 2021 5:47 AM
Here's the program, in case anybody is interested: x=100; y=100; base = 1; randmax = 10; image = [ for(xi=[0:x]) [ for(yi=[0:y]) rands(0,randmax,1)[0] ], ]; //image = [ for(xi=[0:x]) // [ for(yi=[0:y]) let(r=max(norm([xi-x/2, yi-y/2]),0.01)) 10+5*sin(2000*r/norm([x,y])) ], // ]; points = [ for (xi=[0:x]) [xi, 0, 0],
List: discuss@lists.openscad.org
From: Ronaldo Persiano
 
Re: [OpenSCAD] Wrapping text around a complex geometry
Thu, Aug 18, 2016 10:06 PM
May be in OpenSCAD2... 2016-08-18 18:26 GMT-03:00 Trygon : > Another way of approaching this type of problem is set out below.
List: pjsip@lists.pjsip.org
From: JOHAN LANTZ
 
Re: [pjsip] PJSIP call, play music and hangup in python
Tue, May 31, 2016 9:14 AM
Si no es usted. el destinatario indicado, queda notificado de que la lectura, utilización, divulgación y/o copia sin autorización puede estar prohibida en virtud de la legislación vigente. Si ha recibido este mensaje por error, le rogamos que nos lo comunique inmediatamente por esta misma vía y proceda a su destrucción.
List: usrp-users@lists.ettus.com
From: Abhijit Kulkarni
 
Re: [USRP-users] USRP-users Digest, Vol 50, Issue 3
Fri, Oct 3, 2014 4:04 PM
(2*pi*f*t) on an RF carrier fc > should result in two components at fc+f and fc-f, but outputting a > complex-valued baseband signal x(t) = exp(2*pi*f*t) should only result in > an fc+f component.
List: discuss@lists.openscad.org
From: Jordan Brown
 
Generating a helix with linear extrude
Tue, Feb 27, 2024 5:58 AM
norm(p), atan2(p.y, p.x) ]; // Helix angle helix_a = atan2(pitch, helix_r*2*PI); // degrees per unit, along the circumference theta_scale = 360/(2*PI*helix_r); // Banana, algorithm A bananaA = function() [ for (a=[0:359]) torect2([helix_r, 0] + [r*cos(a), r * sin(a) * theta_scale / sin(helix_a)]) ]; // Banana, algorithm B bananaB = function
List: discuss@lists.openscad.org
From: Jordan Brown
 
Generating a helix with linear extrude
Tue, Feb 27, 2024 5:58 AM
norm(p), atan2(p.y, p.x) ]; // Helix angle helix_a = atan2(pitch, helix_r*2*PI); // degrees per unit, along the circumference theta_scale = 360/(2*PI*helix_r); // Banana, algorithm A bananaA = function() [ for (a=[0:359]) torect2([helix_r, 0] + [r*cos(a), r * sin(a) * theta_scale / sin(helix_a)]) ]; // Banana, algorithm B bananaB = function
List: discuss@lists.openscad.org
From: Ronaldo Persiano
 
Re: [OpenSCAD] FW: bending a shape that's only slightly complex
Wed, Dec 9, 2020 8:58 PM
It would render almost instantly. > > > > On Wed, 9 Dec 2020 at 15:43, fred_dot_u via Discuss < > discuss@lists.openscad.org> wrote: > > Is the circle in the x/y plane or the x/z plane?
List: discuss@lists.openscad.org
From: Chun Kit LAM
 
Re: creating surfaces
Tue, Oct 31, 2023 2:57 AM
Just something like abs(z - sin(x) - sin(y)) <= d/2, where d is the desired thickness. I don't have time to compile the python integration for now so I just tried it with manifold sdf. The surface is not very smooth due to marching cubes used. It is probably better to do it with the method in BOSL2.