File: DisplacementMapFilter.hx

package info (click to toggle)
haxe 1%3A4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,520 kB
  • sloc: ml: 137,268; ansic: 2,491; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (32 lines) | stat: -rw-r--r-- 1,814 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package flash.filters;

extern final class DisplacementMapFilter extends BitmapFilter {
	@:flash.property var alpha(get,set) : Float;
	@:flash.property var color(get,set) : UInt;
	@:flash.property var componentX(get,set) : UInt;
	@:flash.property var componentY(get,set) : UInt;
	@:flash.property var mapBitmap(get,set) : flash.display.BitmapData;
	@:flash.property var mapPoint(get,set) : flash.geom.Point;
	@:flash.property var mode(get,set) : DisplacementMapFilterMode;
	@:flash.property var scaleX(get,set) : Float;
	@:flash.property var scaleY(get,set) : Float;
	function new(?mapBitmap : flash.display.BitmapData, ?mapPoint : flash.geom.Point, componentX : UInt = 0, componentY : UInt = 0, scaleX : Float = 0, scaleY : Float = 0, ?mode : DisplacementMapFilterMode, color : UInt = 0, alpha : Float = 0) : Void;
	private function get_alpha() : Float;
	private function get_color() : UInt;
	private function get_componentX() : UInt;
	private function get_componentY() : UInt;
	private function get_mapBitmap() : flash.display.BitmapData;
	private function get_mapPoint() : flash.geom.Point;
	private function get_mode() : DisplacementMapFilterMode;
	private function get_scaleX() : Float;
	private function get_scaleY() : Float;
	private function set_alpha(value : Float) : Float;
	private function set_color(value : UInt) : UInt;
	private function set_componentX(value : UInt) : UInt;
	private function set_componentY(value : UInt) : UInt;
	private function set_mapBitmap(value : flash.display.BitmapData) : flash.display.BitmapData;
	private function set_mapPoint(value : flash.geom.Point) : flash.geom.Point;
	private function set_mode(value : DisplacementMapFilterMode) : DisplacementMapFilterMode;
	private function set_scaleX(value : Float) : Float;
	private function set_scaleY(value : Float) : Float;
}