>
> And also proposal for:
>   void setLineDash (sequence<unrestricted double> segments); // default
> empty
>   sequence<unrestricted double> getLineDash();
> See http://sourceforge.net/p/gnoga/mailman/message/33175198.
>

Added:

   type Dash_Array_Type is array (Positive range <>) of Natural;

   Empty_Dash_List  : constant Dash_Array_Type (1 .. 0) := (others => 0);
   Dotted_Dash_List : constant Dash_Array_Type          := (2, 2);
   Center_Dash_List : constant Dash_Array_Type          := (4, 3, 6, 3);
   Dashed_Dash_List : constant Dash_Array_Type          := (5, 3);

   procedure Set_Line_Dash (Context   : in out Context_2D_Type;
                            Dash_List : in     Dash_Array_Type);

Thanks!!!
David Botton
------------------------------------------------------------------------------
Dive into the World of Parallel Programming. The Go Parallel Website,
sponsored by Intel and developed in partnership with Slashdot Media, is your
hub for all things parallel software development, from weekly thought
leadership blogs to news, videos, case studies, tutorials and more. Take a
look and join the conversation now. http://goparallel.sourceforge.net/
_______________________________________________
Gnoga-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gnoga-list

Reply via email to