jcuda.jnpp
Class NppiSize

java.lang.Object
  extended by jcuda.jnpp.NppiSize

public class NppiSize
extends java.lang.Object

2D Size. This class typically represents the size of a a rectangular region in two space.


Field Summary
 int height
          Rectangle height.
 int width
          Rectangle width.
 
Constructor Summary
NppiSize()
          Creates a new NppiSize with width=0 and height=0
NppiSize(int width, int height)
          Creates a new NppiSize
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

width

public int width
Rectangle width.


height

public int height
Rectangle height.

Constructor Detail

NppiSize

public NppiSize()
Creates a new NppiSize with width=0 and height=0


NppiSize

public NppiSize(int width,
                int height)
Creates a new NppiSize

Parameters:
width - Rectangle width
height - Rectangle height
Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object