LSSTApplications  10.0-2-g4f67435,11.0.rc2+1,11.0.rc2+12,11.0.rc2+3,11.0.rc2+4,11.0.rc2+5,11.0.rc2+6,11.0.rc2+7,11.0.rc2+8
LSSTDataManagementBasePackage
Public Member Functions | Public Attributes | List of all members
lsst.afw.math.detail::gpu::SBox2I Struct Reference

defines a 2D range of integer values begX <= x < endX, begY <= y < endY More...

#include <CudaLanczos.h>

Public Member Functions

 SBox2I ()
 
 SBox2I (int par_begX, int par_begY, int par_endX, int par_endY)
 
bool isInsideBox (gpu::SPoint2 p)
 

Public Attributes

int begX
 
int begY
 
int endX
 
int endY
 

Detailed Description

defines a 2D range of integer values begX <= x < endX, begY <= y < endY

Definition at line 101 of file CudaLanczos.h.

Constructor & Destructor Documentation

lsst.afw.math.detail::gpu::SBox2I::SBox2I ( )
inline

Definition at line 108 of file CudaLanczos.h.

108 {};
lsst.afw.math.detail::gpu::SBox2I::SBox2I ( int  par_begX,
int  par_begY,
int  par_endX,
int  par_endY 
)
inline

Definition at line 110 of file CudaLanczos.h.

Member Function Documentation

bool lsst.afw.math.detail::gpu::SBox2I::isInsideBox ( gpu::SPoint2  p)
inline

Definition at line 113 of file CudaLanczos.h.

114  {
115  return begX <= p.x && p.x < endX
116  && begY <= p.y && p.y < endY;
117  }

Member Data Documentation

int lsst.afw.math.detail::gpu::SBox2I::begX

Definition at line 103 of file CudaLanczos.h.

int lsst.afw.math.detail::gpu::SBox2I::begY

Definition at line 104 of file CudaLanczos.h.

int lsst.afw.math.detail::gpu::SBox2I::endX

Definition at line 105 of file CudaLanczos.h.

int lsst.afw.math.detail::gpu::SBox2I::endY

Definition at line 106 of file CudaLanczos.h.


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