Xmipp  v3.23.11-Nereus
Public Member Functions | List of all members
BSplineGrid< T > Class Template Reference

#include <bspline_grid.h>

Public Member Functions

 BSplineGrid (Dimensions &dim, Matrix1D< T > &coeffsX, Matrix1D< T > &coeffsY)
 
constexpr const DimensionsgetDim () const
 
constexpr const Matrix1D< T > & getCoeffsX () const
 
constexpr const Matrix1D< T > & getCoeffsY () const
 

Detailed Description

template<typename T>
class BSplineGrid< T >

Definition at line 37 of file bspline_grid.h.

Constructor & Destructor Documentation

◆ BSplineGrid()

template<typename T>
BSplineGrid< T >::BSplineGrid ( Dimensions dim,
Matrix1D< T > &  coeffsX,
Matrix1D< T > &  coeffsY 
)
inline

Definition at line 39 of file bspline_grid.h.

39  :
40  dim(dim), coeffsX(coeffsX), coeffsY(coeffsY) {}

Member Function Documentation

◆ getCoeffsX()

template<typename T>
constexpr const Matrix1D<T>& BSplineGrid< T >::getCoeffsX ( ) const
inline

Definition at line 46 of file bspline_grid.h.

46  {
47  return coeffsX;
48  }

◆ getCoeffsY()

template<typename T>
constexpr const Matrix1D<T>& BSplineGrid< T >::getCoeffsY ( ) const
inline

Definition at line 50 of file bspline_grid.h.

50  {
51  return coeffsY;
52  }

◆ getDim()

template<typename T>
constexpr const Dimensions& BSplineGrid< T >::getDim ( ) const
inline

Definition at line 42 of file bspline_grid.h.

42  {
43  return dim;
44  }

The documentation for this class was generated from the following file: