Displaying 4 results from an estimated 4 matches for "y_min".
Did you mean:
i_min
2007 Oct 14
0
10 commits - libswfdec/swfdec_as_strings.c libswfdec/swfdec_text_field.c libswfdec/swfdec_text_field_movie_as.c libswfdec/swfdec_text_field_movie.c
...d.c
index 177462d..d991be6 100644
--- a/libswfdec/swfdec_text_field.c
+++ b/libswfdec/swfdec_text_field.c
@@ -252,8 +252,9 @@ swfdec_text_field_render (SwfdecTextField *text, cairo_t *cr,
const SwfdecRect *inval)
{
GList *layouts, *iter;
+ SwfdecRect limit;
SwfdecColor color;
- int y, y_min, y_max;
+ int y;
g_return_if_fail (SWFDEC_IS_TEXT_FIELD (text));
g_return_if_fail (cr != NULL);
@@ -261,10 +262,10 @@ swfdec_text_field_render (SwfdecTextField *text, cairo_t *cr,
g_return_if_fail (trans != NULL);
g_return_if_fail (inval != NULL);
+ swfdec_rect_intersect (&lim...
2013 Nov 04
0
[LLVMdev] debug metadata for variable length arrays ?
...0; j<n+3; j++)
aaa[i][j] = (i+j*n)%1023;
return aaa[n-1][0];
}
int main(int argc, char** argv)
{
return vla(argc+5);
}
How do I express range for 'aaa' array ?
I would need this for Fortran like languages where bounds can be defined as:
SUBROUTINE foo(x_min,x_max,y_min,y_max, &
aaa &
)
IMPLICIT NONE
INTEGER :: x_min,x_max,y_min,y_max
REAL(KIND=8), DIMENSION(x_min-2:x_max+2,y_min-2:y_max+2) :: aaa
...
Any advice on how to use debug metadata to generate DWARF for those case is...
2006 Jul 10
2
Setting the colors of lines in a trellis plot...
...mbol, 1:numlines);
mysymbols$pch <- c(15:18)[1:numlines]
mysymbols$col <- mycolors
print(xyplot(
panel = panel.superpose,
log10(states) ~ size,
groups=category,
data=data,
type='b',
lwd = 2,
par.settings = list(superpose.symbol=mysymbols),
ylim=c(y_min, y_max),
scales = list(tck=c(1, 0), axs="r",
x=list(tick.number=(xmax - xmin + 1), at=xmin:xmax,
labels=xmin:xmax, cex=1.75),
y=list(axs="r", rot=c(90, 0), labels=y_labels,
at=y_at, cex=1.75...
2010 May 18
4
scaling with relative units in plots or retrieving axes limits in plots
Dears,
a way to define x and y positions in plots in relative numbers (e.g in fractions between 0 and 1 referring to relative positions inside the plot region) would really help me. One example I would need this to would be to add text via text() to a plot always at a defined spot, e.g the upper left corner. Until now I always determined maximum x and y values and used those, but defining