Displaying 20 results from an estimated 6252 matches for "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 about the length...
2017 Dec 31
1
Draw Overlapping Circles with shaded tracks
...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)
draw.circle(4,5,radius=2.50,border="red",lty=3,lwd=3)
draw.circle(4,5,radius=2.55,border="red",lty=3,lwd=3)
draw.circle(4,5,radius=2.60,border="red",lty=3,lwd=3)
draw.circle(4,5,radius=2.65,border="red&quo...
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
configure.ac | 2 -
doc/Makefile.am | 1
doc/swfdec-sections.txt | 2 +
libswfdec/swfdec_buffer.c | 12 +++++++
libswfdec/swfdec_movie_as_drawing.c | 49 ++++++++++++++++++++++++++++----
test/image/Makefile.am | 12 +++++++
test/image/drawing-zorder-5.swf |binary
test/image/drawing-zorder-5.swf.png |binary
test/image/drawing-zorder-6.swf |binary
test/image/drawing-zorder-6.swf.org.png |binar...
2011 May 24
6
ProgeCAD PDF2DXF: CommonProjects.vbi" failed with error 32
...bottom of overlap order
fixme:wintab32:WTOverlap Not moving context to bottom of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
Drawing Load/Save Progress: Load Started ------------------------
Drawing Load/Save Progress: Meter Limit: 1
Drawing Load/Save Progress: Load Completed------------------------
Drawing Load/Save Progress: Load Started ------------------------
Drawing Load/Save Progress: Meter Limit: 52
Drawing Load/...
2017 Dec 31
0
Draw Overlapping Circles with shaded tracks
...t is difficult to know what tit was
supposed to do !)
Marc
Le 31/12/2017 ? 14:10, John Kane via R-help a ?crit?:
> 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:
>
> Hi Abou,
> Wit...
2011 May 20
6
ProgeCAD windows C++ Library run time error
...om of overlap order
fixme:wintab32:WTOverlap Not moving context to bottom of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
fixme:wintab32:WTOverlap Not moving context to top of overlap order
Drawing Load/Save Progress: Load Started ------------------------
Drawing Load/Save Progress: Meter Limit: 1
Drawing Load/Save Progress: Load Completed------------------------
Drawing Load/Save Progress: Load Started ------------------------
Drawing Load/Save Progress: Meter Limit: 52
Drawing Load/...
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:
Hi Abou,
Without an illustration it's hard to work out wh...
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 failed when called in a virgin
environment.
Here is an example in a v...
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
Hi,
Suppose I already have two plots on the same screen, and I want to draw
lines in each of them. Is that possible in R? It seems that once you have
two plots on the screen, you can only draw lines in the the last plot, never
the 1st. Here is what I mean:
#some data
y1=rnorm(1:3)
y2=rnorm(1:3)
#draw two plots on the same screen
par(mfrow=c(2,1),oma = c(6, 0, 5, 0))
par(...
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 oth...
2012 Nov 06
4
Plot in function
...o,
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 / 2,
draw = FALSE, ask = FALSE ){
if(draw)
par( ask = ask )
r <- 0
for( i in 1:N ){
x <- k + cumsum (sample( c(-1, 1),replace = TRUE, n,prob = c(1-p, p)))
if( min(x...
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 dis...
2011 Jan 25
1
lattice draw.key(): position of key in panels
...,
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 placed in the middle of the panel. The example below
illustrates this problem.
df <- data.frame(x=c(1,1),y=c(1,2),type=c("A","B"))
panel.xyplot.x <- function(...) {
# draw data
panel.x...
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 ins...
2007 Dec 30
4
Drawing thread not getting enough time from scheduler?
Need some assistance with animation again... 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'...
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 the draft
on behalf of the...
2013 Feb 18
1
R function help!
simonj16 wrote
> Consider an urn that contains 10 tickets, labelled: 1,1,1,1,2,5,5,10,10,10
>
> I want to draw with replacement n=40 tickets. I am interested in the sum,
> Y, of the 40 ticket values 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)
> }...
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...
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) t...