Skip to content

Commit 3bf1ef2

Browse files
authored
Merge pull request #576 from phuicy/master
Fixed space issue in markdown headings
2 parents 672ae97 + c04a894 commit 3bf1ef2

File tree

1 file changed

+11
-11
lines changed
  • Assets/HoloToolkit/SpatialUnderstanding

1 file changed

+11
-11
lines changed

Assets/HoloToolkit/SpatialUnderstanding/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ See the [HoloToolkit Spatial Mapping](HoloToolkit/SpatialMapping) documentation
77
Edit -> Project Settings -> Player -> Settings for Windows Store -> Publishing Settings -> Capabilities
88
or in your Visual Studio Package.appxmanifest capabilities.
99

10-
###Microsoft HoloLens Documentation
10+
### Microsoft HoloLens Documentation
1111
- [Spatial Mapping In Unity](https://developer.microsoft.com/en-us/windows/holographic/spatial_mapping_in_unity)
1212
- [Spatial Understanding In Unity](https://developer.microsoft.com/en-us/windows/holographic/spatial_mapping_in_unity#holotoolkit.spatialunderstanding)
1313

14-
###Case studies
14+
### Case studies
1515
- [Expanding the spatial mapping capabilities of HoloLens](https://developer.microsoft.com/en-us/windows/holographic/case_study_-_expanding_the_spatial_mapping_capabilities_of_hololens)
1616

1717
### [Plugins](Plugins)
@@ -25,38 +25,38 @@ This prefab is used to control the state and flow of the scanning process used i
2525

2626
### [Scripts](Scripts)
2727

28-
####SpatialUnderstanding.cs
28+
#### SpatialUnderstanding.cs
2929
The SpatialUnderstanding class controls the state and flow of the scanning process used in the understanding module.
3030

31-
####SpatialUnderstandingCustomMesh.cs
31+
#### SpatialUnderstandingCustomMesh.cs
3232
Handles the custom meshes generated by the understanding dll. The meshes are generated during the scanning phase and once more on scan finalization. The meshes can be used to visualize the scanning progress.
3333

34-
####SpatialUnderstandingDll.cs
34+
#### SpatialUnderstandingDll.cs
3535
Encapsulates the primary dll functions, including marshalling helper functions. The dll functions are organized into four parts - in this behavior, SpatialUnderstandingDllTopology, SpatialUnderstandingDllShapes, and SpatialUnderstandingDllObjectPlacement. The scan flow, raycast, and alignment functions are included in this class.
3636

37-
####SpatialUnderstandingDllObjectPlacement.cs
37+
#### SpatialUnderstandingDllObjectPlacement.cs
3838
Encapsulates the object placement queries of the understanding dll. These queries will not be valid until after scanning is finalized.
3939

40-
####SpatialUnderstandingDllShapes.cs
40+
#### SpatialUnderstandingDllShapes.cs
4141
Encapsulates the shape detection queries of the understanding dll. Shapes are defined by the user with AddShape and the analysis is
4242
initiated with ActivateShapeAnalysis. These queries will not be valid until after scanning is finalized.
4343

4444
Shape definitions are composed of a list of components and a list of shape constraints which defining requirements between the
4545
components. Each component is defined by a list of its own shape component constraints.
4646

47-
####SpatialUnderstandingDllTopology.cs
47+
#### SpatialUnderstandingDllTopology.cs
4848
Encapsulates the topology queries of the understanding dll. These queries will not be valid until after scanning is finalized.
4949

50-
####SpatialUnderstandingSourceMesh.cs
50+
#### SpatialUnderstandingSourceMesh.cs
5151
Provides the input meshes to the spatial understanding dll. The component relies on the spatial mapping module. It maintains
5252
a mesh list in the required dll format which is updated from the spatial mapping's SurfaceObject list.
5353

5454
### [Shaders](Materials)
5555

56-
####SpatialMappingSurface.shader
56+
#### SpatialMappingSurface.shader
5757
A basic wire frame shader that can be used for rendering Spatial Mapping meshes.
5858

59-
####SpatialUnderstandingSurface.shader
59+
#### SpatialUnderstandingSurface.shader
6060
A basic wire frame shader that can be used for rendering Spatial Understanding Surfaces.
6161

6262
---

0 commit comments

Comments
 (0)