Searched refs:vertex (Results 1 - 25 of 66) sorted by relevance

123

/haiku/headers/libs/agg/
H A Dagg_conv_curve.h115 unsigned vertex(double* x, double* y);
144 unsigned conv_curve<VertexSource, Curve3, Curve4>::vertex(double* x, double* y) function in class:agg::conv_curve
146 if(!is_stop(m_curve3.vertex(x, y)))
153 if(!is_stop(m_curve4.vertex(x, y)))
165 unsigned cmd = m_source->vertex(x, y);
169 m_source->vertex(&end_x, &end_y);
177 m_curve3.vertex(x, y); // First call returns path_cmd_move_to
178 m_curve3.vertex(x, y); // This is the first vertex of the curve
184 m_source->vertex(
[all...]
H A Dagg_conv_unclose_polygon.h35 unsigned vertex(double* x, double* y) function in class:agg::conv_unclose_polygon
37 unsigned cmd = m_source->vertex(x, y);
H A Dagg_conv_adaptor_vcgen.h31 unsigned vertex(double*, double*) { return path_cmd_stop; } function in struct:agg::null_markers
66 unsigned vertex(double* x, double* y);
89 unsigned conv_adaptor_vcgen<VertexSource, Generator, Markers>::vertex(double* x, double* y) function in class:agg::conv_adaptor_vcgen
99 m_last_cmd = m_source->vertex(&m_start_x, &m_start_y);
111 cmd = m_source->vertex(x, y);
142 cmd = m_generator.vertex(x, y);
H A Dagg_conv_transform.h41 unsigned vertex(double* x, double* y) function in class:agg::conv_transform
43 unsigned cmd = m_source->vertex(x, y);
H A Dagg_vpgen_segmentator.h43 unsigned vertex(double* x, double* y);
H A Dagg_conv_close_polygon.h32 unsigned vertex(double* x, double* y);
62 unsigned conv_close_polygon<VertexSource>::vertex(double* x, double* y) function in class:agg::conv_close_polygon
76 cmd = m_source->vertex(x, y);
H A Dagg_conv_concat.h42 unsigned vertex(double* x, double* y) function in class:agg::conv_concat
47 cmd = m_source1->vertex(x, y);
53 cmd = m_source2->vertex(x, y);
H A Dagg_conv_marker.h38 unsigned vertex(double* x, double* y);
87 unsigned conv_marker<MarkerLocator, MarkerShapes>::vertex(double* x, double* y) function in class:agg::conv_marker
108 if(is_stop(m_marker_locator->vertex(&x1, &y1)))
113 if(is_stop(m_marker_locator->vertex(&x2, &y2)))
126 cmd = m_marker_shapes->vertex(x, y);
H A Dagg_bezier_arc.h65 unsigned vertex(double* x, double* y) function in class:agg::bezier_arc
75 // number of vertices. That is, for 1 vertex it returns 2.
136 unsigned vertex(double* x, double* y) function in class:agg::bezier_arc_svg
138 return m_arc.vertex(x, y);
142 // number of vertices. That is, for 1 vertex it returns 2.
H A Dagg_gsv_text.h58 unsigned vertex(double* x, double* y);
136 unsigned vertex(double* x, double* y) function in class:agg::gsv_text_outline
138 return m_trans.vertex(x, y);
H A Dagg_arc.h16 // Arc vertex generator
51 unsigned vertex(double* x, double* y);
H A Dagg_vcgen_bspline.h53 unsigned vertex(double* x, double* y);
H A Dagg_conv_adaptor_vpgen.h35 unsigned vertex(double* x, double* y);
67 unsigned conv_adaptor_vpgen<VertexSource, VPGen>::vertex(double* x, double* y) function in class:agg::conv_adaptor_vpgen
72 cmd = m_vpgen.vertex(x, y);
97 cmd = m_source->vertex(&tx, &ty);
H A Dagg_vcgen_markers_term.h42 unsigned vertex(double* x, double* y);
H A Dagg_path_storage_integer.h47 unsigned vertex(double* x_, double* y_, function in struct:agg::vertex_integer
113 unsigned vertex(unsigned idx, double* x, double* y) const function in class:agg::path_storage_integer
115 return m_storage[idx].vertex(x, y);
138 unsigned vertex(double* x, double* y) function in class:agg::path_storage_integer
153 unsigned cmd = m_storage[m_vertex_idx].vertex(x, y);
180 m_storage[i].vertex(&x, &y);
249 unsigned vertex(double* x, double* y) function in class:agg::serialized_integer_path_adaptor
268 unsigned cmd = v.vertex(x, y, m_dx, m_dy, m_scale);
H A Dagg_vcgen_vertex_sequence.h47 unsigned vertex(double* x, double* y);
108 inline unsigned vcgen_vertex_sequence::vertex(double* x, double* y) function in class:agg::vcgen_vertex_sequence
H A Dagg_arrowhead.h61 unsigned vertex(double* x, double* y);
H A Dagg_path_length.h36 while(!is_stop(cmd = vs.vertex(&x2, &y2)))
H A Dagg_rounded_rect.h16 // Rounded rectangle vertex generator
50 unsigned vertex(double* x, double* y);
H A Dagg_vpgen_clip_polygon.h63 unsigned vertex(double* x, double* y);
/haiku/src/libs/icon/transformer/
H A DPathTransformer.h33 virtual unsigned vertex(double* x, double* y) function in class:PathTransformer
34 { return fSource->vertex(x, y); }
H A DPathSource.cpp41 // vertex
43 PathSource::vertex(double* x, double* y) function in class:PathSource
45 return fAGGCurvedPath.vertex(x, y);
H A DPathSource.h34 virtual unsigned vertex(double* x, double* y);
/haiku/src/libs/icon/generic/
H A DVertexSource.h25 virtual unsigned vertex(double* x, double* y) = 0;
/haiku/src/libs/agg/src/
H A Dagg_rounded_rect.cpp16 // Rounded rectangle vertex generator
105 unsigned rounded_rect::vertex(double* x, double* y) function in class:agg::rounded_rect
117 cmd = m_arc.vertex(x, y);
128 cmd = m_arc.vertex(x, y);
139 cmd = m_arc.vertex(x, y);
150 cmd = m_arc.vertex(x, y);

Completed in 75 milliseconds

123