Home
last modified time | relevance | path

Searched refs:cubicInterpolate (Results 1 – 16 of 16) sorted by relevance

/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/src/
H A Dcommon_math.cpp170 float cubicInterpolate(float p[4], float x) in cubicInterpolate() function
183 yy[0] = cubicInterpolate(p[0], y); in bicubicInterpolate()
184 yy[1] = cubicInterpolate(p[1], y); in bicubicInterpolate()
185 yy[2] = cubicInterpolate(p[2], y); in bicubicInterpolate()
186 yy[3] = cubicInterpolate(p[3], y); in bicubicInterpolate()
187 return cubicInterpolate(yy, x); in bicubicInterpolate()
H A Dcommon_math.h123 float cubicInterpolate(float p[4], float x);
/dports/graphics/mandelbulber/mandelbulber2-2.26/mandelbulber2/opencl/engines/
H A Dbicubic_interpolation.cl37 inline float3 cubicInterpolate(float3 p[4], float x)
62 yy[0] = cubicInterpolate(p[0], y);
63 yy[1] = cubicInterpolate(p[1], y);
64 yy[2] = cubicInterpolate(p[2], y);
65 yy[3] = cubicInterpolate(p[3], y);
66 return cubicInterpolate(yy, x);
/dports/graphics/digikam/digikam-7.4.0/core/libs/dimg/filters/lens/
H A Dlensdistortionpixelaccess.cpp209 cubicInterpolate(corner, m_depth * m_width, dst, m_sixteenBit, dx, dy, brighten); in pixelAccessGetCubic()
224 cubicInterpolate(corner, m_depth * m_width, dst, m_sixteenBit, dx, dy, brighten); in pixelAccessGetCubic()
235 cubicInterpolate(corner, m_depth * m_width, dst, m_sixteenBit, dx, dy, brighten); in pixelAccessGetCubic()
250 void LensDistortionPixelAccess::cubicInterpolate(uchar* src, int rowStride, uchar* dst, in cubicInterpolate() function in Digikam::LensDistortionPixelAccess
H A Dlensdistortionpixelaccess.h72 void cubicInterpolate(uchar* src, int rowStride, uchar* dst,
/dports/science/qmcpack/qmcpack-3.11.0/src/Numerics/
H A DOneDimCubicSpline.h138 inline T1 cubicInterpolate(T1 y1, T1 y2, T1 d2y1, T1 d2y2) const in cubicInterpolate() function
249 return eval.cubicInterpolate(m_Y[Loc], m_Y[Loc + 1], m_Y2[Loc], m_Y2[Loc + 1]); in splint()
/dports/audio/lmms/lmms-1.2.2/include/
H A Dinterpolation.h68 inline float cubicInterpolate( float v0, float v1, float v2, float v3, float x ) in cubicInterpolate() function
/dports/audio/lmms/lmms-1.2.2/plugins/vibed/
H A Dvibrating_string.cpp151 m_impulse[frame] = cubicInterpolate( in resample()
/dports/astro/celestia-gtk/celestia-1.6.1/src/tools/spice2xyzv/
H A Dspice2xyzv.cpp207 static Vec3d cubicInterpolate(const Vec3d& p0, const Vec3d& v0, in cubicInterpolate() function
313 Vec3d pInterp = cubicInterpolate(lastState.position, in convertSpkToXyzv()
/dports/astro/celestia/celestia-1.6.1/src/tools/spice2xyzv/
H A Dspice2xyzv.cpp207 static Vec3d cubicInterpolate(const Vec3d& p0, const Vec3d& v0, in cubicInterpolate() function
313 Vec3d pInterp = cubicInterpolate(lastState.position, in convertSpkToXyzv()
/dports/astro/celestia-gtk/celestia-1.6.1/src/celengine/
H A Dsamporbit.cpp143 static Vec3d cubicInterpolate(const Vec3d& p0, const Vec3d& v0, in cubicInterpolate() function
263 pos = cubicInterpolate(p0, v0, p1, v1, t); in computePosition()
583 pos = cubicInterpolate(p0, v0 * h, p1, v1 * h, t); in computePosition()
H A Drender.cpp1579 static Point3d cubicInterpolate(const Point3d& p0, const Vec3d& v0, in cubicInterpolate() function
1615 Point3d p = cubicInterpolate(p1.pos, v0, p2.pos, v1, i * dt); in renderOrbitSplineSegment()
1698 Point3d p = cubicInterpolate(p1.pos, v0, p2.pos, v1, t);
/dports/astro/celestia/celestia-1.6.1/src/celengine/
H A Dsamporbit.cpp143 static Vec3d cubicInterpolate(const Vec3d& p0, const Vec3d& v0, in cubicInterpolate() function
263 pos = cubicInterpolate(p0, v0, p1, v1, t); in computePosition()
583 pos = cubicInterpolate(p0, v0 * h, p1, v1 * h, t); in computePosition()
H A Drender.cpp1579 static Point3d cubicInterpolate(const Point3d& p0, const Vec3d& v0, in cubicInterpolate() function
1615 Point3d p = cubicInterpolate(p1.pos, v0, p2.pos, v1, i * dt); in renderOrbitSplineSegment()
1698 Point3d p = cubicInterpolate(p1.pos, v0, p2.pos, v1, t);
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/geometry/
H A Dqgslinestring.cpp178 static double cubicInterpolate( double a, double b, in cubicInterpolate() function
226 *xData++ = cubicInterpolate( a, b, start.x(), controlPoint1.x(), controlPoint2.x(), end.x() ); in fromBezierCurve()
227 *yData++ = cubicInterpolate( a, b, start.y(), controlPoint1.y(), controlPoint2.y(), end.y() ); in fromBezierCurve()
229 … *zData++ = cubicInterpolate( a, b, start.z(), controlPoint1.z(), controlPoint2.z(), end.z() ); in fromBezierCurve()
231 … *mData++ = cubicInterpolate( a, b, start.m(), controlPoint1.m(), controlPoint2.m(), end.m() ); in fromBezierCurve()
/dports/graphics/qgis/qgis-3.22.3/src/core/geometry/
H A Dqgslinestring.cpp180 static double cubicInterpolate( double a, double b, in cubicInterpolate() function
228 *xData++ = cubicInterpolate( a, b, start.x(), controlPoint1.x(), controlPoint2.x(), end.x() ); in fromBezierCurve()
229 *yData++ = cubicInterpolate( a, b, start.y(), controlPoint1.y(), controlPoint2.y(), end.y() ); in fromBezierCurve()
231 … *zData++ = cubicInterpolate( a, b, start.z(), controlPoint1.z(), controlPoint2.z(), end.z() ); in fromBezierCurve()
233 … *mData++ = cubicInterpolate( a, b, start.m(), controlPoint1.m(), controlPoint2.m(), end.m() ); in fromBezierCurve()