Commit e67e3923 authored by Jérémy Lacoche's avatar Jérémy Lacoche
Browse files

Restore clean 1.1.0 tag

parent 81d3094b
Loading
Loading
Loading
Loading

API/API calls.md

deleted100644 → 0
+0 −13
Original line number Diff line number Diff line
# API calls

## AR17-AddTrackable

![](../API/SEQ-AR17-AddTrackable.png)

## AR17-AddStructuralModelToTrackable

![SEQ-AR17-AddStructuralModelToTrackable](./SEQ-AR17-AddStructuralModelToTrackable.png)

## AR17-RemoveTrackable

![SEQ-AR17-RemoveTrackable](./SEQ-AR17-RemoveTrackable.png)
−17.7 KiB
Loading image diff...
+0 −27
Original line number Diff line number Diff line
@startuml

participant "World Storage"  as WS
participant "Authoring Tool" as AT

rnote left AT
**Payload**
  Creator UID
+ Trackable UID
+ 3D Transform
+ Unit System
+ Scale
+ Structural Model URL
end rnote

WS <- AT: AR17-AddStructuralModelToTrackable()

alt successful case

return Link ID

else UID not found
WS -> AT: AR17-UID not found

end

@enduml

API/SEQ-AR17-AddTrackable.png

deleted100644 → 0
−41.7 KiB
Loading image diff...

API/SEQ-AR17-AddTrackable.puml

deleted100644 → 0
+0 −45
Original line number Diff line number Diff line
@startuml

participant "World Storage"  as WS
participant "Authoring Tool" as AT

rnote left AT
**Payload**
  Creator UID
+ Trackable Type
+ Trackable Encoding Information
+ Trackable Payload
+ Local CRS
+ Unit System 
+ Trackable Scale
+ KeyValue Tag List
end rnote

WS <- AT: AR17-AddTrackable()
activate WS

WS -> WS : Extract features



alt successful case
rnote right WS
**Payload**
  Unique Identifier
end rnote
WS -> AT: AR17-Trackable unique Identifier
deactivate WS
note right AT
Stores the identifier with the Trackable in the scene graph
end note
else Trackable type not supported
WS -> AT: AR17-Trackable type not supported
else Trackable Encoding not supported
WS -> AT: AR17-Trackable Encoding not supported
else Trackable Decoding failed
WS -> AT: AR17- Trackable Decoding failed
else Trackable feature extraction error.
WS -> AT: AR17- Trackable feature extraction error.
end

@enduml
Loading