ftp.nice.ch/Attic/openStep/developer/resources/MiscKit.2.0.5.m.NIS.b.tgz#/MiscKit.2.0.5.m.NIS.b/MiscFoundation.framework/Versions/A/Headers/MiscCartesianCoord.h

This is MiscCartesianCoord.h in view mode; [Download] [Up]

/*========================= MiscCartesianCoord.h ============================*/
/* MiscCartesianCoord class contains and supports values representing
   locations in a Cartesian coordinate system

   DMA Release 0.8, Copyright @1993 by Genesis Project, Ltd. All Rights
   Reserved. For further information on terms and conditions see
		the MiscKit license.

HISTORY
25-Feb-93  Dale Amon at GPL
	   Created.
*/

#import <Foundation/Foundation.h>
#import <MiscFoundation/MiscMathCoord.h>

/* ordering of coordinates in storage */
#define MISC_X_COORD		0
#define MISC_Y_COORD		1
#define MISC_Z_COORD		2

@interface MiscCartesianCoord:MiscMathCoord
{

}

- setCoordx: (double)  x y: (double)  y z: (double)  z;
- coordx:    (double*) x y: (double*) y z: (double*) z;

- (double) xCoord;
- (double) yCoord;
- (double) zCoord;

@end

These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.