We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f5e42 commit 637aab1Copy full SHA for 637aab1
XZListAOIManager.go
@@ -14,6 +14,7 @@ type XZListAOIManager struct {
14
zSweepList *yAOIList
15
}
16
17
+// NewXZListAOIManager creates a new XZListAOIManager
18
func NewXZListAOIManager() AOIManager {
19
return &XZListAOIManager{
20
xSweepList: newXAOIList(),
aoi.go
@@ -1,12 +1,13 @@
1
package aoi
2
3
+// Coord is the type for coordinate axes values
4
type Coord float32
5
6
type AOI struct {
- x Coord
7
- y Coord
8
- dist Coord
9
- Data interface{}
+ x Coord
+ y Coord
+ dist Coord
10
+ Data interface{}
11
12
callback AOICallback
13
implData interface{}
0 commit comments