Search results for all lists

10000 messages found
Sort by
List: birdalert@ontbirds.ca
From: Laura Murray
 
Muskoka warblers, AND OTHERS
Tue, May 28, 2002 7:02 PM
Observed over the weekend at Echo Lake, near Bracebridge, were 11 spp. of warblers: REDSTARTS YELLOWS BLACK AND WHITE BLACK THROATED BLUE CHESTNUT SIDED WILSON'S YELLOW RUMP CANADA BLACKBURNIAN MOURNING (1st sighting for me) COMMON YELLOWTHROAT Also seen were a Bittern in flight, A Great Blue Heron, a Great Crested Flycatcher, Kingbird, Kingfisher, Pileated, Y.
List: trawlers@lists.trawlering.com
From: scaramouche@tvo.org
 
Re(2): TWL: Lectra/San?
Mon, Sep 11, 2000 1:30 AM
Some of these won't let you enter unless you have a holding tank and your Y-valve is permanently plugged. I believe the Erie Canal is one of them. perhaps someone who has recently done this trip could advise? - George of Scaramouche
List: discuss@lists.openscad.org
From: Alex Gibson
 
Re: [OpenSCAD] Wrapping text around a complex geometry
Fri, Aug 19, 2016 4:33 PM
> On 18 Aug 2016, at 23:26, Trygon wrote: > > Another way of approaching this type of problem is set out below.
List: discuss@lists.openscad.org
From: otto
 
Re: [OpenSCAD] Adding a border of d thickness to a polygon
Fri, Nov 25, 2016 6:11 PM
> > > > Regards > > Otto > > > > function heartRadius(t) = (1.5 - 1.5* sin(t) + (sin(t) * > > (sqrt(abs(cos(t)))/(sin(t)+1.6)))); > > $fn=23; > > div=512; //ONLY USE POWERS OF 2 > > > > module pHeart(xy,off=0) { > > > > td = 1/div; // theta delta - the resolution of the curve > > > > // Calculate x/y co-ords separetely so I can scale > > correctly
List: discuss@lists.openscad.org
From: Sanjeev Prabhakar
 
Re: sinwave glass
Sat, Aug 26, 2023 1:45 PM
> > 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*360) * sin(j/32*360) > ] > ]; > difference() { > cyl(h=h, r=r, texture=tex, tex_size=[n,n], tex_scale=tscale,
List: usrp-users@lists.ettus.com
From: Jeon
 
Re: [USRP-users] Is it possible for USRP to apply DC biased carrier to a signal?
Sun, Feb 8, 2015 12:40 PM
0 f2(t) = A1 * sin(fc * t + phi)+ B for symbol 1, where f1(t) and f2(t) are always nonnegative, A1> A0 and time duration of each f1(t) and f2(t) will be 31.25 us (e.g. 1/32k) The final output (amplitude, brightness of LED) will be: s(t) = Sum_{j=1,4,6,9,...}
List: discuss@lists.openscad.org
From: nop head
 
Re: [OpenSCAD] Polyhedron issue.
Sun, Jan 11, 2015 9:37 AM
> before 90 deg > function offset(a,d)=(((rawradius*x_tra/2)-d*5) -scle(d)* rawradius*x_tra > ); > function x(a,d) =( scle(d)* rawradius*x_tra * abs(sin(a/2))+offset(a,d) ); > function y(a,d) =(scle(d)*rawradius*0.6 * sin(a)); //*(sin(a))*1.4 > > pa=[for(lev=[0:levs+1]) for (a = [0:step:360+step]) > [ > a == (360+step) ?
List: pjsip@lists.pjsip.org
From: Serrano Jiménez, Jaime [ABANCE]
 
pjsip with alsa pcm mult
Mon, Jan 28, 2013 8:53 AM
NAVANTIA ______________________________ Este mensaje, y cualquier fichero anexo al mismo, contiene informacion de caracter confidencial dirigida exclusivamente a su(s) destinatario(s) y, en su caso, sometida a secreto profesional. Queda prohibida su difusion, copia o distribucion a terceros sin la previa autorizacion escrita.
List: discuss@lists.openscad.org
From: nop head
 
Re: [OpenSCAD] Script to replicate hull and minkoswki for CSG export/import into FreeCAD
Fri, Mar 18, 2016 11:29 AM
- p1.y, theta = atan2(y_delta, x_delta), xa = p1.x +(cos(90 + theta) * rad), ya = p1.y +(sin(90 + theta) * rad), xb = xa + x_delta, yb = ya + y_delta ) side ?
List: discuss@lists.openscad.org
From: Dan Shriver
 
Re: [OpenSCAD] geometry help
Sun, Sep 18, 2016 5:54 PM
I can get the bottom on the x axis > via > > a translate with y value: (r2*(cos(45))) but when I try to do something > > similar to get the top in line I can't get it right. > > Just translate the whole thing with the *correct* formula: > > > > r1=20; > > r2=40; > > a =60; > > > > translate( [0, r2*(sin(a)), 0] ){ > > rotate( [0,0,-a] ){ > > translate