001         package com.croftsoft.core.math.geom;
002    
003         /*********************************************************************
004         * A read-only interface for double precision (x,y,z) coordinates.
005         *
006         * @version
007         *   2003-04-13
008         *
009         * @since
010         *   2003-03-30
011         *
012         * @author
013         *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
014         *********************************************************************/
015    
016         public interface  PointXYZ
017           extends PointXY
018         //////////////////////////////////////////////////////////////////////
019         //////////////////////////////////////////////////////////////////////
020         {
021    
022         public double  getZ ( );
023    
024         //////////////////////////////////////////////////////////////////////
025         //////////////////////////////////////////////////////////////////////
026         }