; docformat = 'rst'
;+
; Definition for Point named structure.
;
; :Fields:
; x
; x-coordinate of point
; y
; y-coordinate of point
; color
; color of point
;-
pro mg_point__define
define = { mg_point, $
x : 0.0, $
y : 0.0, $
color : bytarr(3) $
}
end