search for: draws

Displaying 20 results from an estimated 6223 matches for "draws".

Did you mean: draw
2011 May 24
0
ProgeCAD Layer drop down menu opening up off screen
rucker222 wrote: > The drop down layer selection menu at the top left of the screen directly above where the drawing 1 tab is opens upwards off of the screen once the drawing has a few layers on it. jjmckenzie wrote: > Log file please. I loaded a drawing with plenty of layers and then clicked on the layer drop down menu a couple of times before exiting ProgeCAD. Log file below. (sorry
2017 Dec 31
1
Draw Overlapping Circles with shaded tracks
Dear All: Thank you very much for all of you. I just have one more thing. Is there a way to fill the borders with small dots, may be different sizes. I tried to do it, but it looks ugly. Here what I tried: library(plotrix) plot(0:10, 0:10, type="n",axes=FALSE,xlab="",ylab="") #### 0:5, draw.circle(4,5,radius=3,border="#ff0000aa", lwd=75)
2007 Oct 11
0
10 commits - configure.ac doc/Makefile.am doc/swfdec-sections.txt libswfdec/swfdec_buffer.c libswfdec/swfdec_movie_as_drawing.c test/image test/sound
...le; + dstroke->no_hscale = sstroke->no_hscale; + + return SWFDEC_DRAW (dstroke); +} + +static void +swfdec_sprite_movie_end_fill (SwfdecMovie *movie, SwfdecDraw *new) +{ + /* FIXME: need to cairo_close_path()? */ + movie->draw_fill = new; + if (new == NULL) + return; + + movie->draws = g_slist_append (movie->draws, new); + + /* need to begin a new line segment to ensure proper stacking order */ + if (movie->draw_line) { + movie->draw_line = swfdec_stroke_copy (movie->draw_line); + movie->draws = g_slist_append (movie->draws, movie->draw_line); + }...
2011 May 24
6
ProgeCAD PDF2DXF: CommonProjects.vbi" failed with error 32
> rucker222 wrote: > The convert PDF to DXF function does not work (found in the file menu). Below is the output at the Command line when I try to use it. > > Command : _PDF2CAD > 1Vbi file not found > > there does not appear to be an error to copy from the terminal. jjmckenzie wrote: > Interesting. This looks like a 'file not found error' but the first part
2017 Dec 31
0
Draw Overlapping Circles with shaded tracks
Another solution: library("HelpersMG") plot(0:10,type="n",axes=FALSE,xlab="",ylab="", asp=1) ellipse(center.x = 3, center.y = 5, radius.x = 5, radius.y = 5, lwd=10, col=NA, border=rgb(red = 1, green = 0, blue=0, alpha = 0.5)) ellipse(center.x = 8, center.y = 5, radius.x = 5, radius.y = 5, lwd=10, col=NA, border=rgb(red = 0, green = 1, blue=0, alpha =
2011 May 20
6
ProgeCAD windows C++ Library run time error
Hi, I'm new to Linux and even newer to wine. I'm using the latest release of wine 1.3.20 on U10.10 - the Maverick Meerkat. I work as an AutoCAD Draft Person and as much as I have fallen in love with my Ubuntu OS I am really disappointed with the lack of quality CAD software. I came across ProgeCAD (2010 Pro) on a couple of forums and saw in the AppDB section that ProgeCAD has some
2017 Dec 31
2
Draw Overlapping Circles with shaded tracks
That code nees the plotrix package: library(plotrix) pdf("circles.pdf") plot(0:10,type="n",axes=FALSE,xlab="",ylab="") draw.circle(4,5,radius=3,border="#ff0000aa",lwd=10) draw.circle(6,5,radius=3,border="#0000ffaa",lwd=10) dev.off() On Friday, December 29, 2017, 6:06:32 PM EST, Jim Lemon <drjimlemon at gmail.com> wrote:
2008 Feb 08
1
xspline(..., draw=FALSE) fails if there is no open device (PR#10727)
Full_Name: Jari Oksanen Version: 2.6.2 RC (2008-02-07 r44369) OS: Linux Submission from: (NULL) (130.231.102.145) Even if function xspline() is called with argument draw=FALSE, it requires a graphics device (that it won't use since it was draw=FALSE). I run into this because I intended to use xspline within a function (that does not yet draw: there is plot method for that), and the function
2012 Feb 15
11
[Patches][nouveau/ddx]: Improvements to bufferswap implementation and timestamping
Hi, here a set of patches against the nouveau-ddx. This is an extended and revised set, based on Francisco Jerez feedback from autumn last year. [1/9] Makes pageflipping work again on X-Server 1.12rc. It apparently stopped working somewhere around Xorg 1.11+. [2/9] Implements handling of pageflip completion events from the kernel. Francisco Jerez argument against including it was that the
2008 Jan 24
2
plot help
...draw two plots on the same screen par(mfrow=c(2,1),oma = c(6, 0, 5, 0)) par(mar=c(0, 5.1, 0, 5.1)) plot(y1,xaxt="n",type="n") #1st plot par(mar=c(0, 5.1, 0, 5.1)) plot(y2,xaxt="n",type="n") #2nd plot #try to draw lines onto each plot on the screen lines(y2) #draws a line in the 2nd plot lines(y1,col=2) #also draws a line in the 2nd plot, but that's not what I want. I want to draw the line in the 1st plot instead. Does anyone know if after more than one plot were drawn, can I still call the 1st plot and draw a line in it? Thanks, -- Tom [[alternativ...
2011 Sep 09
2
Looping through multiple datasets already in memory
Gents, I have the following loop: for (i in (seq(along=Draw.1[,1]))) {print(i)} # from 1 - 5 (counter) for (i in (seq(along=Draw.1[,1]))) {print(Draw[i,4])} # from the 1 - column (passes parameter per column) Now: I have multiple Draws [Draw.1 - Draw.100] in memory with different "orders" Question: How do I loop through each Draw.[j]? OR in other way, how do I pick up all the datasets from memory dynamically? Something like: for (i in (seq(along=Draw.[J][,1]))) {print(Draw[i,4])} paste() would not allow me to pick t...
2012 Nov 06
4
Plot in function
Hello, I am a R beginner and I have a question about a litte function I found. Here is the code: # Gambler's Ruin Problem. # seed capital: k # rounds: n # probability of success: p # number of trials: N # graphical output (yes/no): draw # Wait for new graphic (yes/no): ask ruin<- function( N = 1, n = 10, k = 1, p = 1 /
2008 Sep 17
3
Is there a way to not use an explicit loop?
I have a problem in where i generate m independent draws from a binomial distribution, say draw1 = rbinom( m , size.a, prob.a ) then I need to use each draw to generate a beta distribution. So, like using a beta prior, binomial likelihood, and obtain beta posterior, m many times. I have not found out a way to vectorize draws from a beta dist...
2011 Jan 25
1
lattice draw.key(): position of key in panels
Good afternoon, I am working on a plot that requires custom legends to be placed in some panels of the plot; other panels do not contain legends. The problem that I run into is positioning of the legend in individual panels. In particular, the 'x' and 'y' elements of the key-list are ignored by draw.key() when it is called from inside a panel function. As a result, the legend is
2017 Oct 24
3
draw a circle with a gradient fill
Hi all,I would like to draw a simple circle where the color gradient follows the rule color = 1/(r^2) where r is the distance from the circle. I would also like to add a color bar with values going from -40 to -110 (and associate those with the color gradient that fills the circle). So far I experiemented with draw circle
2007 Dec 30
4
Drawing thread not getting enough time from scheduler?
...... When I run the drawing code in a separate thread, it''s slow as heck. I think it may be because the drawing thread isn''t getting enough time from the thread scheduler. I was able to reproduce the problem in my little sample program simply by increasing the number of lines it draws per update. I''m lucky to get one frame every three seconds with this. If I "thread.join" or "thread.priority += 1" the speed greatly increases, but then the GUI becomes unresponsive. (Similar problems with threads have been discussed previously on the wxRuby mailing...
2007 Mar 01
2
Composite retained drawing protocol
I've recently drafted a rough idea of a composite manager agnostic protocol for leveraging the compositor for retained drawing in a way suitable for highly interactive and flexible applications. It seems to be that for anything like this to be a success it would have to be developed with the support of multiple window managers, and I would appreciate any feedback, ideas, and contributions to
2013 Feb 18
1
R function help!
...that I draw > > Write an R function named urn.model that simulates this experiement. What > I have below is not working. > > flip.n = function(p,n) { > return(runif(n,0,1) < p) > } > ticket.ns<-c(1,1,1,1,2,5,5,10,10,10) > urn.model = function(ticket.ns) { > draws.per.sim = 1 > prob = .1 > urn.results = rep(-1, ticket.ns) > for (i in 1:ticket.ns) { > draws = flip.n(prob,draws.per.sim) > num =sum(draws,ticket.ns) > urn.results[i] = num > } > return(urn.results) > } > urn.25.samples =urn.model(25) > > urn.25.sam...
2004 Dec 02
2
Drawing a rectangle around a barplot()
Hi I want to draw a rectangle behind a barplot such that it highlights those particular bars from the rest of the plot. I have figured out how to draw a barplot(), and then how to draw a rectangle of the correct shape and size (using rect()), but when I use rect() it draws over the top of the bars, and then when I re-draw the bars, it draws with a white background, thus eliminating my rectangle! I can't use box() as I don't want to draw a box round my entire plot, I just want to draw a box as the background to certain subsets of the bars. Can anyone help?...
2010 Jan 21
1
Ask about drawing kernel density estimation
Hi, I have a data set about age from 2006 to 2009 for certain individual. I would like to draw the kernel density estimation to age for each year. But I don't know how to draw the different plots in one graph. The data looks like: Year ID Age 2006 1 20 2006 2 30 2007 1 21 2007 2 31 2008 1 22 2009 1 23 I first use hist(age) to