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 3.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. site_name: "MARTINS.js: GPU-accelerated Augmented Reality for the web"
  2. site_url: https://alemart.github.io/martins-js
  3. site_author: Alexandre Martins
  4. site_description: Create Augmented Reality experiences that run in web browsers. No need to download apps. WebAR technology.
  5. copyright: Copyright © 2022 - present Alexandre Martins
  6. repo_name: alemart/martins-js
  7. repo_url: https://github.com/alemart/martins-js
  8. theme:
  9. name: material
  10. custom_dir: docs_overrides
  11. features: [ 'navigation.tabs', 'navigation.tabs.sticky' ]
  12. logo: img/martins-icon.png
  13. extra_css: [ 'style/extra.css' ]
  14. extra_javascript: [ 'js/extra.js' ]
  15. plugins:
  16. - search
  17. - mkdocs-simple-hooks:
  18. hooks:
  19. on_post_build: 'docs.hooks:copy_static_files'
  20. markdown_extensions:
  21. - admonition
  22. - attr_list
  23. - pymdownx.superfences
  24. - pymdownx.tabbed:
  25. alternate_style: true
  26. - pymdownx.highlight:
  27. anchor_linenums: true
  28. - pymdownx.inlinehilite
  29. - pymdownx.snippets
  30. - pymdownx.details
  31. - md_in_html
  32. - footnotes
  33. - pymdownx.emoji:
  34. emoji_index: !!python/name:pymdownx.emoji.gemoji
  35. emoji_generator: !!python/name:pymdownx.emoji.to_png
  36. #emoji_index: !!python/name:materialx.emoji.gemoji
  37. #emoji_generator: !!python/name:materialx.emoji.to_svg
  38. dev_addr: 127.0.0.1:8008
  39. nav:
  40. - 'Home': 'index.md'
  41. - 'Getting started':
  42. - 'Welcome': 'getting-started/index.md'
  43. - 'WebAR Crash Course':
  44. - 'Introduction': 'getting-started/introduction.md'
  45. - 'Concepts': 'getting-started/concepts.md'
  46. - 'Set up a web server': 'getting-started/set-up-a-web-server.md'
  47. - 'Set up the tracker': 'getting-started/set-up-the-tracker.md'
  48. - 'Set up the session': 'getting-started/set-up-the-session.md'
  49. - 'Create the augmented scene': 'getting-started/create-the-augmented-scene.md'
  50. - 'Activate your webcam': 'getting-started/activate-your-webcam.md'
  51. - 'Next steps': 'getting-started/next-steps.md'
  52. - 'Guidelines for Images': 'getting-started/guidelines-for-images.md'
  53. - 'Questions & Answers': 'faq.md'
  54. - 'Support my work': 'support-my-work.md'
  55. - 'License': 'license.md'
  56. - 'Download': 'download.md'
  57. - 'Demos':
  58. - 'Demo gallery': 'gallery.md'
  59. - 'API':
  60. - 'General':
  61. - 'Session': 'api/session.md'
  62. - 'Frame': 'api/frame.md'
  63. - 'Time': 'api/time.md'
  64. - 'Martins': 'api/martins.md'
  65. - 'Settings': 'api/settings.md'
  66. - 'Resolution': 'api/resolution.md'
  67. - 'Trackers':
  68. - 'Image tracker':
  69. - 'ImageTracker': 'api/image-tracker.md'
  70. - 'ReferenceImage': 'api/reference-image.md'
  71. - 'ReferenceImageDatabase': 'api/reference-image-database.md'
  72. - 'ImageTrackerResult': 'api/image-tracker-result.md'
  73. - 'TrackableImage': 'api/trackable-image.md'
  74. - 'Tracker': 'api/tracker.md'
  75. - 'TrackerResult': 'api/tracker-result.md'
  76. - 'Trackable': 'api/trackable.md'
  77. - 'Sources':
  78. - 'CameraSource': 'api/camera-source.md'
  79. - 'CanvasSource': 'api/canvas-source.md'
  80. - 'VideoSource': 'api/video-source.md'
  81. - 'Source': 'api/source.md'
  82. - 'Geometry':
  83. - 'Pose': 'api/pose.md'
  84. - 'Viewer': 'api/viewer.md'
  85. - 'ViewerPose': 'api/viewer-pose.md'
  86. - 'View': 'api/view.md'
  87. - 'PerspectiveView': 'api/perspective-view.md'
  88. - 'RigidTransform': 'api/rigid-transform.md'
  89. - 'Visualization':
  90. - 'Viewport': 'api/viewport.md'
  91. - 'HUD': 'api/hud.md'
  92. - 'Gizmos': 'api/gizmos.md'
  93. - 'Events':
  94. - 'AREvent': 'api/ar-event.md'
  95. - 'AREventListener': 'api/ar-event-listener.md'
  96. - 'AREventTarget': 'api/ar-event-target.md'
  97. - 'AREventType': 'api/ar-event-type.md'
  98. - 'Speedy':
  99. - 'Speedy': 'api/speedy.md'
  100. - 'SpeedySize': 'api/speedy-size.md'
  101. - 'SpeedyMatrix': 'api/speedy-matrix.md'
  102. - 'SpeedyPromise': 'api/speedy-promise.md'