Method | Description | |
---|---|---|
DrawBox ( |
Draw a box around an object
|
|
DrawBox ( |
Draw a box around a target
|
|
DrawBox ( int X, int Y, int width, int height, |
Draw a box around the co-ords with a color
|
|
ImageHelpers ( ) : System |
Provides some nice functions that can save you a lot of time
|
|
MotionBlur ( |
Blurs an image with another image with a multiplier
|
|
SetPixel ( |
Sets the pixel to a cetain color (Aplha works)
|
public DrawBox ( |
||
obj | Object to draw around | |
bmp | The bitmap to draw to | |
col | Color | Color |
return | void |
public DrawBox ( |
||
t | The target to draw a box around | |
bmp | The bitmap to draw to | |
col | Color | Color |
return | void |
public DrawBox ( int X, int Y, int width, int height, |
||
X | int | X |
Y | int | Y |
width | int | Width of the box |
height | int | Height of the box |
bmp | The bitmap to draw to | |
col | Color | Color to draw with |
fill | bool | |
return | void |
public MotionBlur ( |
||
imagetoblur | The image that will be modified | |
current | The current image to blur with | |
ammount | int | Blur over how many frames |
return | void |
public SetPixel ( |
||
bmp | The bitmap data | |
x | int | X |
y | int | Y |
col | Color | Color to draw with |
return | void |