Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

mkdocs.yml 4.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. site_name: "encantar.js: GPU-accelerated Augmented Reality framework for the web"
  2. site_url: https://encantar.dev
  3. site_author: Alexandre Martins
  4. site_description: The home of encantar.js, a high performance and open source Augmented Reality framework for JavaScript. No app is required for Web AR.
  5. copyright: Copyright © 2022 - present Alexandre Martins
  6. repo_name: alemart/encantar-js
  7. repo_url: https://github.com/alemart/encantar-js
  8. theme:
  9. name: material
  10. custom_dir: docs_overrides
  11. features:
  12. - navigation.tabs
  13. - navigation.tabs.sticky
  14. - navigation.footer
  15. palette:
  16. primary: deep purple
  17. accent: yellow
  18. logo: 'img/logo.png'
  19. favicon: 'img/favicon.png'
  20. extra_css: [ 'style/extra.css' ]
  21. extra_javascript: [ 'js/extra.js' ]
  22. plugins:
  23. - search
  24. - mkdocs-simple-hooks:
  25. hooks:
  26. on_post_build: 'docs.hooks:copy_static_files'
  27. - redirects:
  28. redirect_maps:
  29. 'api/index.md': 'api/ar.md'
  30. markdown_extensions:
  31. - admonition
  32. - attr_list
  33. - pymdownx.superfences
  34. - pymdownx.tabbed:
  35. alternate_style: true
  36. - pymdownx.highlight:
  37. anchor_linenums: true
  38. - pymdownx.inlinehilite
  39. - pymdownx.snippets
  40. - pymdownx.details
  41. - md_in_html
  42. - footnotes
  43. - pymdownx.emoji:
  44. emoji_index: !!python/name:pymdownx.emoji.gemoji
  45. emoji_generator: !!python/name:pymdownx.emoji.to_png
  46. #emoji_index: !!python/name:materialx.emoji.gemoji
  47. #emoji_generator: !!python/name:materialx.emoji.to_svg
  48. dev_addr: 127.0.0.1:8008
  49. nav:
  50. - 'Home': 'index.md'
  51. - 'Demos':
  52. - 'Demos': 'demos.md'
  53. - 'Add-Ons':
  54. - 'Add-Ons': 'addons/index.md'
  55. - 'AR Button API': 'addons/ar-button.md'
  56. - 'AR Clickable API': 'addons/ar-clickable.md'
  57. - 'Video Player API': 'addons/ar-video-player.md'
  58. - 'Asset Manager API': 'addons/asset-manager.md'
  59. - 'More Add-Ons': 'addons/more-addons.md'
  60. - 'Learn':
  61. - 'Introduction': 'tutorial/index.md'
  62. - 'Concepts': 'tutorial/concepts.md'
  63. - 'Set up a web server': 'tutorial/set-up-a-web-server.md'
  64. - 'Set up the tracker': 'tutorial/set-up-the-tracker.md'
  65. - 'Set up the session': 'tutorial/set-up-the-session.md'
  66. - 'Activate your webcam': 'tutorial/activate-your-webcam.md'
  67. - 'Augment the scene': 'tutorial/augment-the-scene.md'
  68. - 'Next steps': 'tutorial/next-steps.md'
  69. - 'Recommendations': 'recommendations.md'
  70. - 'Guidelines for Images': 'guidelines-for-images.md'
  71. - 'Questions & Answers': 'faq.md'
  72. - 'License': 'license.md'
  73. - 'API Reference': 'api/index.md'
  74. - 'API':
  75. - 'General':
  76. - 'AR': 'api/ar.md'
  77. - 'Session': 'api/session.md'
  78. - 'Frame': 'api/frame.md'
  79. - 'Time': 'api/time-manager.md'
  80. - 'Settings': 'api/settings.md'
  81. - 'Resolution': 'api/resolution.md'
  82. - 'Plugins':
  83. - 'A-Frame': 'api/plugin-aframe.md'
  84. - 'Babylon.js': 'api/plugin-babylon.md'
  85. - 'Three.js': 'api/plugin-three.md'
  86. - 'Trackers':
  87. - 'Image tracker':
  88. - 'ImageTracker': 'api/image-tracker.md'
  89. - 'ReferenceImage': 'api/reference-image.md'
  90. - 'ReferenceImageDatabase': 'api/reference-image-database.md'
  91. - 'ImageTrackerResult': 'api/image-tracker-result.md'
  92. - 'TrackableImage': 'api/trackable-image.md'
  93. - 'Pointer tracker':
  94. - 'PointerTracker': 'api/pointer-tracker.md'
  95. - 'PointerTrackerResult': 'api/pointer-tracker-result.md'
  96. - 'TrackablePointer': 'api/trackable-pointer.md'
  97. - 'Tracker': 'api/tracker.md'
  98. - 'TrackerResult': 'api/tracker-result.md'
  99. - 'Trackable': 'api/trackable.md'
  100. - 'Sources':
  101. - 'CameraSource': 'api/camera-source.md'
  102. - 'CanvasSource': 'api/canvas-source.md'
  103. - 'VideoSource': 'api/video-source.md'
  104. - 'PointerSource': 'api/pointer-source.md'
  105. - 'Source': 'api/source.md'
  106. - 'Visualization':
  107. - 'Viewport': 'api/viewport.md'
  108. - 'HUD': 'api/hud.md'
  109. - 'Gizmos': 'api/gizmos.md'
  110. - 'Geometry':
  111. - 'Pose': 'api/pose.md'
  112. - 'Viewer': 'api/viewer.md'
  113. - 'ViewerPose': 'api/viewer-pose.md'
  114. - 'View': 'api/view.md'
  115. - 'PerspectiveView': 'api/perspective-view.md'
  116. - 'Transform': 'api/transform.md'
  117. - 'Vector2': 'api/vector2.md'
  118. - 'Vector3': 'api/vector3.md'
  119. - 'Quaternion': 'api/quaternion.md'
  120. - 'Ray': 'api/ray.md'
  121. - 'Events':
  122. - 'AREvent': 'api/ar-event.md'
  123. - 'AREventListener': 'api/ar-event-listener.md'
  124. - 'AREventTarget': 'api/ar-event-target.md'
  125. - 'AREventType': 'api/ar-event-type.md'
  126. - 'Speedy':
  127. - 'Speedy': 'api/speedy.md'
  128. - 'SpeedySize': 'api/speedy-size.md'
  129. - 'SpeedyMatrix': 'api/speedy-matrix.md'
  130. - 'SpeedyPromise': 'api/speedy-promise.md'
  131. - 'Contact': 'contact.md'