Skip to content

Commit 3447992

Browse files
committed
Improve readme.
1 parent 3eba32e commit 3447992

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

README.md

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -111,49 +111,49 @@ Watch window displaying plot representation of variables in a single image. Type
111111
* C-style array
112112
* Pointer to elements with size specifier e.g.: `ptr,5`
113113
* Sequence of containers of point coordinates e.g.: `vec_x;vec_y`
114-
* STL: array, vector, deque, list, set
115-
* Boost.Array: array
116-
* Boost.CircularBuffer: circular_buffer
117-
* Boost.Container: vector, static_vector
118-
* C#: array, List, LinkedList
119-
* VB: array List (containers of values only)
114+
* STL: `array`, `vector`, `deque`, `list`, `set`
115+
* Boost.Array: `array`
116+
* Boost.CircularBuffer: `circular_buffer`
117+
* Boost.Container: `vector`, `static_vector`
118+
* C#: array, `List`, `LinkedList`, `IList`, `IEnumerable`
119+
* VB: array, `List` (containers of values only)
120120
* user-defined containers (see below)
121121
* 2D cartesian geometries
122-
* Boost.Geometry: point, point_xy, box, segment, referring_segment, polygon, multi_point, multi_linestring, multi_polygon, nsphere
123-
* Boost.Polygon: point_data, segment_data, rectangle_data, polygon_data, polygon_with_holes_data
124-
* STL: pair
122+
* Boost.Geometry: `point`, `point_xy`, `box`, `segment`, `referring_segment`, `linestring`, `polygon`, `multi_point`, `multi_linestring`, `multi_polygon`, `nsphere`
123+
* Boost.Polygon: `point_data`, `segment_data`, `rectangle_data`, `polygon_data`, `polygon_with_holes_data`
124+
* STL: `pair`
125125
* user-defined geometry types (see below)
126126
* Non-cartesian geometries (spherical_equatorial and geographic)
127-
* Boost.Geometry: point, box, segment, referring_segment, polygon, multi_point, multi_linestring, multi_polygon, nsphere
127+
* Boost.Geometry: `point`, `box`, `segment`, `referring_segment`, `linestring`, `polygon`, `multi_point`, `multi_linestring`, `multi_polygon`, `nsphere`
128128
* Spatial indexes
129-
* Boost.Geometry: rtree
129+
* Boost.Geometry: `rtree`
130130
* Complex numbers
131-
* STL: complex
131+
* STL: `complex`
132132
* Images
133-
* Boost.Gil: image (incl. typedefs, e.g. rgb8_image_t, abgr16_image_t, cmyk32_image_t, rgb64f_planar_image_t, etc.)
133+
* Boost.Gil: `image` (incl. typedefs, e.g. `rgb8_image_t`, `abgr16_image_t`, `cmyk32_image_t`, `rgb64f_planar_image_t`, etc.)
134134
* Variants of geometries
135-
* Boost.Variant: variant
135+
* Boost.Variant: `variant`
136136

137137
##### User-defined types
138138

139139
The extension offers support for the following user-defined geometries for both C++ and C# types:
140140

141-
* Box (aka rectangle)
142-
* Line
143-
* Linestring
144-
* MultiLinestring
145-
* MultiPoint
146-
* MultiPolygon
147-
* Point
148-
* Polygon (polygon with holes)
149-
* Ray
150-
* Ring (polygon without holes)
151-
* Segment
141+
* `Box` (aka rectangle)
142+
* `Line`
143+
* `Linestring`
144+
* `MultiLinestring`
145+
* `MultiPoint`
146+
* `MultiPolygon`
147+
* `Point`
148+
* `Polygon` (polygon with holes)
149+
* `Ray`
150+
* `Ring` (polygon without holes)
151+
* `Segment`
152152

153153
as well as user defined containers for C++:
154154

155-
* Array
156-
* LinkedList
155+
* `Array`
156+
* `LinkedList`
157157

158158
They can be defined in XML file similar to *.natvis file. Path to this file can be set in options under **Tools**->**Options**->**Graphical Debugging**->**General**. An example XML file defining C++ types `MyPoint`, `MyRing` and `MyPolygon` in global namespace might look like this:
159159

0 commit comments

Comments
 (0)