Package | com.transmote.flar.utils |
Class | public class FLARProxy |
Inheritance | FLARProxy flash.display.Sprite |
Implements | IFLARSource |
Property | Defined by | ||
---|---|---|---|
inited : Boolean [read-only]
returns true if initialization is complete.
| FLARProxy | ||
mirrored : Boolean
FLARProxy cannot be mirrored;
method is here only for compliance with IFLARSource.
| FLARProxy | ||
resultsToDisplayRatio : Number [read-only]
ratio of area of reported results to display size.
| FLARProxy | ||
source : BitmapData [read-only]
FLARProxy has no BitmapData source;
method is here only for compliance with IFLARSource.
| FLARProxy | ||
sourceSize : Rectangle [read-only]
size of BitmapData source used for analysis.
| FLARProxy |
Method | Defined by | ||
---|---|---|---|
FLARProxy(displayWidth:Number, displayHeight:Number)
constructor.
| FLARProxy | ||
activate():void
begin marker simulation.
| FLARProxy | ||
deactivate():void
stop marker simulation.
| FLARProxy | ||
dispose():void
halts all processes and frees this instance for garbage collection.
| FLARProxy | ||
update():void
FLARProxy updates on mouse interaction;
method is here only for compliance with IFLARSource.
| FLARProxy |
inited | property |
inited:Boolean
[read-only]returns true if initialization is complete. FLARProxy is inited automatically in constructor.
Implementation public function get inited():Boolean
mirrored | property |
mirrored:Boolean
[read-write]FLARProxy cannot be mirrored; method is here only for compliance with IFLARSource.
Implementation public function get mirrored():Boolean
public function set mirrored(value:Boolean):void
resultsToDisplayRatio | property |
resultsToDisplayRatio:Number
[read-only]ratio of area of reported results to display size. use to scale (multiply) results of FLARToolkit analysis to correctly fit display area. FLARProxy always uses the whole screen size, so this method returns 1.0.
Implementation public function get resultsToDisplayRatio():Number
source | property |
source:BitmapData
[read-only]FLARProxy has no BitmapData source; method is here only for compliance with IFLARSource.
Implementation public function get source():BitmapData
sourceSize | property |
sourceSize:Rectangle
[read-only]size of BitmapData source used for analysis.
Implementation public function get sourceSize():Rectangle
FLARProxy | () | constructor |
public function FLARProxy(displayWidth:Number, displayHeight:Number)
constructor.
ParametersdisplayWidth:Number — width of active area.
|
|
displayHeight:Number — height of active area.
|
activate | () | method |
public function activate():void
begin marker simulation.
deactivate | () | method |
public function deactivate():void
stop marker simulation.
dispose | () | method |
public function dispose():void
halts all processes and frees this instance for garbage collection.
update | () | method |
public function update():void
FLARProxy updates on mouse interaction; method is here only for compliance with IFLARSource.