search for: tmpy

Displaying 5 results from an estimated 5 matches for "tmpy".

Did you mean: tmp
2007 Feb 15
0
8 commits - libswfdec/swfdec_bits.h libswfdec/swfdec_font.c libswfdec/swfdec_font.h libswfdec/swfdec_loader.c libswfdec/swfdec_loader_internal.h libswfdec/swfdec_tag.c libswfdec/swfdec_text.c libswfdec/swfdec_text.h test/swfedit_token.c test/various
...glyph entry */ }; struct _SwfdecFontClass diff --git a/libswfdec/swfdec_text.c b/libswfdec/swfdec_text.c index 7f2ed9c..6090512 100644 --- a/libswfdec/swfdec_text.c +++ b/libswfdec/swfdec_text.c @@ -50,8 +50,8 @@ swfdec_text_mouse_in (SwfdecGraphic *gra } tmpx = x - glyph->x; tmpy = y - glyph->y; - tmpx *= SWFDEC_TEXT_SCALE_FACTOR / glyph->height; - tmpy *= SWFDEC_TEXT_SCALE_FACTOR / glyph->height; + tmpx = tmpx * glyph->font->scale_factor / glyph->height; + tmpy = tmpy * glyph->font->scale_factor / glyph->height; if (swfdec_graphi...
2009 Aug 12
3
How to label and unlabel points on scatterplot with mouse pointer
Dear all, How can I label/unlabel points on scatterplot with mouse pointer. As the mouse approches near to point, it should label the closest point, then unlabel when it moves away. How can I do in R? I be very thankful. Thanks and Regards, Hitesh Singla -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.
2007 Nov 28
0
59 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_object.h libswfdec/swfdec_button.c libswfdec/swfdec_button.h libswfdec/swfdec_button_movie.c libswfdec/swfdec_button_movie.h libswfdec/swfdec_event.c
...;bits); + swfdec_bits_get_u16 (&bits); /* depth */ graphic = swfdec_swf_decoder_get_character (dec, id); - if (!SWFDEC_IS_GRAPHIC (graphic)) + if (!SWFDEC_IS_GRAPHIC (graphic)) { + SWFDEC_ERROR ("id %u is no graphic", id); continue; + } tmpx = x; tmpy = y; swfdec_bits_get_matrix (&bits, &matrix, &inverse); commit e8502cb92ba87686404b9981df550dfbe536a6e3 Author: Benjamin Otte <otte at gnome.org> Date: Wed Nov 28 13:39:17 2007 +0100 add a test for the DefineButton tag diff --git a/test/trace/Makefile.am b/test/trace/...
2007 Jun 13
0
Branch 'as' - 6 commits - libswfdec/swfdec_as_array.c libswfdec/swfdec_button_movie.c libswfdec/swfdec_morph_movie.c libswfdec/swfdec_movie_asprops.c libswfdec/swfdec_movie.c libswfdec/swfdec_movie.h libswfdec/swfdec_player.c libswfdec/swfdec_sprite.c
...-618,18 +571,18 @@ swfdec_movie_get_movie_at (SwfdecMovie * clip_depth = 0; for (clip_walk = clip_walk->prev; clip_walk; clip_walk = clip_walk->prev) { SwfdecMovie *clip = walk->data; - if (clip->content->clip_depth) { + if (clip->clip_depth) { double tmpx = x, tmpy = y; cairo_matrix_transform_point (&clip->inverse_matrix, &tmpx, &tmpy); if (!swfdec_movie_mouse_in (clip, tmpx, tmpy)) { - SWFDEC_LOG ("skipping depth %d to %d due to clipping", clip->content->depth, clip->content->clip_depth); - clip_depth = ch...
2013 Jul 15
21
[PATCH 00 of 21 RESEND] blktap3/drivers: Introduce tapdisk server.
This patch series copies the core of the tapdisk process from blktap2, with updates coming from blktap2.5. Signed-off-by: Thanos Makatos <thanos.makatos@citrix.com>