Re: [Vala] cairo binding bug?

2014-06-27 Thread Nor Jaidi Tuah
The way I understand the documentation at http://www.cairographics.org/manual/cairo-Paths.html is that a Path can either be constructed through a cairo context, i.e., using new_path move_to line_to arc_to etc and such a path can be read using either copy_path

Re: [Vala] cairo binding bug?

2014-06-26 Thread Luca Bruno
On 26/06/2014 03:24, Nor Jaidi Tuah wrote: According to http://www.cairographics.org/manual/cairo-Paths.html, The path may be either the return value from one of cairo_copy_path() or cairo_copy_path_flat() or it may be constructed manually. But, trying to construct a path manually,

[Vala] cairo binding bug?

2014-06-25 Thread Nor Jaidi Tuah
According to http://www.cairographics.org/manual/cairo-Paths.html, The path may be either the return value from one of cairo_copy_path() or cairo_copy_path_flat() or it may be constructed manually. But, trying to construct a path manually, i.e., var path = new Cairo.Path (); gives a

Re: [Vala] cairo binding bug?

2014-06-25 Thread yannick inizan
Not a bug, Path is a compact class and haven't constructor. So when you'll have a Context, do this : Cairo.Context cr; .. Cairo.Path path = cr.copy_path(); regards ;) 2014-06-26 3:24 GMT+02:00 Nor Jaidi Tuah norjaidi.t...@ubd.edu.bn: According to