> If nothing helps, maybe you can boil some code down to a single page and
> post it here.
here it is...
void C_MapView::draw(void)
{
Fl_Scroll::draw();
if (m_ShowCompass)
{
fl_color(FL_DARK_GREEN);
fl_line_style(FL_SOLID, 3);
fl_push_matrix();
fl_translate(x()+100,y()+100);
fl_scale(1,-1);
fl_rotate(m_NorthOffset);
fl_begin_line();
fl_vertex(0,0);
fl_vertex(0,100);
fl_end_line();
fl_begin_line();
fl_vertex(-5,95);
fl_vertex(0,100);
fl_vertex(5,95);
fl_end_line();
fl_pop_matrix();
}
}
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk