Skip to content

Commit 465c054

Browse files
committed
Code formatting cleanup
1 parent 4961c0c commit 465c054

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/ARController.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -520,11 +520,11 @@ export default class ARController {
520520
// debug stuff
521521
//----------------------------------------------------------------------------
522522

523-
/**
524-
* Sets up a debug canvas for the AR detection.
523+
/**
524+
* Sets up a debug canvas for the AR detection.
525525
* Draws a red marker on top of each detected square in the image.
526-
* The debug canvas is added to document.body.
527-
*/
526+
* The debug canvas is added to document.body.
527+
*/
528528
debugSetup() {
529529

530530
if(typeof document === 'undefined') {
@@ -538,11 +538,11 @@ export default class ARController {
538538
this._bwpointer = this.getProcessingImage();
539539
};
540540

541-
/**
542-
* Draw the black and white image and debug markers to the ARController canvas.
543-
* See setDebugMode.
541+
/**
542+
* Draw the black and white image and debug markers to the ARController canvas.
543+
* See setDebugMode.
544544
* @return 0 (void)
545-
*/
545+
*/
546546
debugDraw() {
547547

548548
let debugBuffer = new Uint8ClampedArray(
@@ -830,7 +830,7 @@ export default class ARController {
830830
* Note that this is actually a count, not an index. A better name for this function would be
831831
* arGetDetectedMarkerCount, but the current name lives on for historical reasons.
832832
*/
833-
getMarkerNum () {
833+
getMarkerNum() {
834834
return this.artoolkit.getMarkerNum(this.id);
835835
};
836836

0 commit comments

Comments
 (0)