-
Notifications
You must be signed in to change notification settings - Fork 3
/
XNMaths.h
52 lines (39 loc) · 928 Bytes
/
XNMaths.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
// XNMaths.h
// XNMaths
//
// Imports XNMaths headers.
//
// Created by Нат Гаджибалаев on 20.11.09.
// Copyright 2009 Нат Гаджибалаев. All rights reserved.
//
#import <Cocoa/Cocoa.h>
//
// Include some shared structures and classes
#import "XN2DPoint.h"
#import "XNFloatRange.h"
#import "XNBox.h"
//
// Include function-related classes
#import "XNFunction.h"
#import "XNFunction+LagrangeInterpolation.h"
#import "XNFunction+NewtonInterpolation.h"
#import "XNFunctionOf2D.h"
#import "XNAbstractFunction.h"
#import "XNTabulatedFunctionOf2D.h"
//
// Include matrices and vectors
#import "XNVector.h"
#import "XNMatrix.h"
#import "XNLinearEquationSystem.h"
//
// Include splines
#import "XNLinearSpline.h"
#import "XNCubicSpline.h"
//
// Include plotting classes
#import "XNLineData.h"
#import "XNSurfaceData.h"
#import "XN2DPlot.h"
#import "XN3DPlot.h"
#import "XNPlotManager.h"