28 lines
695 B
C
28 lines
695 B
C
|
|
/*
|
|
* Argyll Color Management System
|
|
* Multi-dimensional regularized spline
|
|
* Implementation header.
|
|
*
|
|
* Author: Graeme W. Gill
|
|
* Date: 28/9/96
|
|
*
|
|
* Copyright 1996, Graeme W. Gill
|
|
* All rights reserved.
|
|
*
|
|
* This material is licenced under the GNU AFFERO GENERAL PUBLIC LICENSE Version 3 :-
|
|
* see the License.txt file for licencing details.
|
|
*/
|
|
|
|
#include "rspl.h"
|
|
|
|
#ifndef RSPL_IMP_H
|
|
|
|
/* These three factors controll how the monotonic stuff behaves. */
|
|
#define MCINC 0.05 /* The tollerance for detecting non-monoticity */
|
|
#define BALLEV 0.8 /* Balance level of adjusted points */
|
|
#define RADF 0.01 /* Radius factor of nme influence */
|
|
|
|
#define RSPL_IMP_H
|
|
#endif /* RSPL_IMP_H */
|