b922fdc99b
* gnome/CanvasPoints.custom : make New overload a ctor overload. * gnome/Gnome.metadata : mark CanvasPoints as opaque * gnome/gnome-api.xml : regenerated. [Fixes #37256] svn path=/trunk/gtk-sharp/; revision=19145
16 lines
507 B
Text
16 lines
507 B
Text
//
|
|
// Gnome.CanvasPoints.custom - Gnome CanvasPoints class customizations
|
|
//
|
|
// Author: Rachel Hestilow <hestilow@ximian.com>
|
|
//
|
|
// Copyright (C) 2002 Rachel Hestilow
|
|
//
|
|
// This code is inserted after the automatically generated code.
|
|
//
|
|
|
|
[DllImport("gtksharpglue")]
|
|
static extern System.IntPtr
|
|
gtksharp_gnome_canvas_points_new_from_array (uint num_points, double[] coords);
|
|
|
|
public CanvasPoints (double[] coords) : this (gtksharp_gnome_canvas_points_new_from_array ((uint) coords.Length / 2, coords)) {}
|
|
|