Search results for all lists

10000 messages found
Sort by
List: usrp-users@lists.ettus.com
From: Urban Hakansson
 
Re: [USRP-users] Frequency translation works differently on N210 and B210.
Wed, Oct 1, 2014 6:41 PM
. > No replica at fc-f.
List: discuss@lists.openscad.org
From: fluidity
 
Polyhedron issue.
Sun, Jan 11, 2015 8:51 AM
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: discuss@lists.openscad.org
From: hsafti
 
Re: [OpenSCAD] Removing all surfaces in the X-Y Plane
Thu, Jan 9, 2020 6:47 PM
Of course I will remove surfaces based on surface normal or use a utility from cfMesh that produces the surface I need from an X-Y planar sketch ... This is maybe why both ideas got mixed in my head! -- Sent from: http://forum.openscad.org/
List: discuss@lists.openscad.org
From: runsun
 
Re: [OpenSCAD] Symmetrical Rotation
Mon, Oct 5, 2015 5:46 AM
The offx, offy are to be calculated using cos and sin, which shouldn't be hard.
List: discuss@lists.openscad.org
From: kdtop
 
Question about recursive function
Sun, Nov 11, 2018 10:10 PM
//Obtain vector of points on circumference of circle of radius = 50, start angle=10, end angle=45, step of 2 degrees circum_pts1 = circum_pts([[]], 10, 50, 2, 45); echo(circum_pts1); function circum_pts(pts, angle, rad, angle_step = 1, end_angle=360) = let(x =rad * cos(angle)) let(y =rad * sin(angle)) angle < (end_angle+1) ?
List: usrp-users@lists.ettus.com
From: Juan Daniel Fernandez Martinez
 
information about an Error
Tue, Nov 13, 2012 11:09 PM
Si usted no es el destinatario autorizado o por error recibe este mensaje, por favor informe al remitente y posteriormente bórrelo de su sistema sin conservar copia del mismo.
List: usrp-users@lists.ettus.com
From: Juan Daniel Fernandez Martinez
 
Passing control messages between blocks
Thu, Dec 13, 2012 3:44 PM
Si usted no es el destinatario autorizado o por error recibe este mensaje, por favor informe al remitente y posteriormente bórrelo de su sistema sin conservar copia del mismo.
List: usrp-users@lists.ettus.com
From: Josh Blum
 
Re: [USRP-users] msg_signature parameters
Wed, Dec 19, 2012 9:11 PM
Si usted no es el destinatario autorizado o por error recibe este mensaje, por favor informe al remitente y posteriormente bórrelo de su sistema sin conservar copia del mismo. > > > > _______________________________________________ > USRP-users mailing list > USRP-users@lists.ettus.com > http://lists.ettus.com/mailman/listinfo/usrp-users_lists.ettus.com >
List: discuss@lists.openscad.org
From: Anthony J. Scaraggi
 
Re: Max X and Max Y value in a generated set of points
Wed, Jun 2, 2021 1:43 PM
Using >> "max(triangle)" [1,0] is returned (so I can extract the max "x" value), is >> there a way to get the max "y" value or should I just index through each >> "y" and store the max value?
List: time-nuts@lists.febo.com
From: Ben Bradley
 
Re: Complex PLL
Wed, Mar 17, 2021 6:26 PM
atan2 also does something else, it returns the angle in the correct quadrant for the signs of x and y. I don't know offhand if this is your problem, but it can only help.