DBA Data[Home] [Help]

PACKAGE BODY: OWAPUB.OWA_IMAGE

Source


1 package body OWA_IMAGE is
2 
3    function get_x(p in point) return integer is
4    begin
5       return(p(1));
6    end;
7 
8    function get_y(p in point) return integer is
9    begin
10       return(p(2));
11    end;
12 
13 /* Package initialization */
14 begin
15    NULL_POINT(1) := NULL;
16    NULL_POINT(2) := NULL;
17 end;