| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- function Image() {
- if(arguments[0] != "__skip_ptr__") {
- this.__ptr = Polycode.Image()
- }
- }
- Image.IMAGE_RGB = 0
- Image.IMAGE_RGBA = 1
- Image.IMAGE_FP16 = 2
- Image.prototype.createEmpty = function(width,height,fillColor) {
- Polycode.Image_createEmpty(this.__ptr, width, height, fillColor)
- }
- Image.prototype.fill = function(color) {
- Polycode.Image_fill(this.__ptr, color)
- }
- Image.prototype.setPixel = function(x,y,r,g,b,a) {
- Polycode.Image_setPixel(this.__ptr, x, y, r, g, b, a)
- }
- Image.prototype.getPixel = function(x,y) {
- var retVal = new Color("__skip_ptr__")
- retVal.__ptr = Polycode.Image_getPixel(this.__ptr, x, y)
- return retVal
- }
- Image.prototype.drawLine = function(x0,y0,x1,y1,col) {
- Polycode.Image_drawLine(this.__ptr, x0, y0, x1, y1, col)
- }
- Image.prototype.moveBrushTo = function(x,y) {
- Polycode.Image_moveBrushTo(this.__ptr, x, y)
- }
- Image.prototype.moveBrush = function(x,y) {
- Polycode.Image_moveBrush(this.__ptr, x, y)
- }
- Image.prototype.drawLineTo = function(x,y,col) {
- Polycode.Image_drawLineTo(this.__ptr, x, y, col)
- }
- Image.prototype.fillRect = function(x,y,w,h,col) {
- Polycode.Image_fillRect(this.__ptr, x, y, w, h, col)
- }
- Image.prototype.perlinNoise = function(seed,alpha) {
- Polycode.Image_perlinNoise(this.__ptr, seed, alpha)
- }
- Image.prototype.fastBlur = function(blurSize) {
- Polycode.Image_fastBlur(this.__ptr, blurSize)
- }
- Image.prototype.fastBlurVert = function(blurSize) {
- Polycode.Image_fastBlurVert(this.__ptr, blurSize)
- }
- Image.prototype.fastBlurHor = function(blurSize) {
- Polycode.Image_fastBlurHor(this.__ptr, blurSize)
- }
- Image.prototype.getBrushX = function() {
- return Polycode.Image_getBrushX(this.__ptr)
- }
- Image.prototype.getBrushY = function() {
- return Polycode.Image_getBrushY(this.__ptr)
- }
- Image.prototype.isLoaded = function() {
- return Polycode.Image_isLoaded(this.__ptr)
- }
- Image.prototype.getType = function() {
- return Polycode.Image_getType(this.__ptr)
- }
- Image.prototype.getWidth = function() {
- return Polycode.Image_getWidth(this.__ptr)
- }
- Image.prototype.getHeight = function() {
- return Polycode.Image_getHeight(this.__ptr)
- }
- Image.prototype.premultiplyAlpha = function() {
- Polycode.Image_premultiplyAlpha(this.__ptr)
- }
|