Annotations
Functions for interacting with annotations.
Functions
Type | Name |
---|---|
vrnode | vrAnnotationCreate(vrvec3 worldPos, vrvec3 worldRot, vrnode targetNode) Create an annotation at the specified location, linked to the specified object. |
vrnode | vrAnnotationCreateComment(vrnode annotation) Create a comment on an annotation. |
vrnode | vrAnnotationCreateViewpoint(vrnode annotation) Create a viewpoint on an annotation. |
void | vrAnnotationDelete(vrnode annotation) Delete an annotation and all associated comments and viewpoints. |
void | vrAnnotationDeleteComment(vrnode comment) Delete a comment from an annotation. |
void | vrAnnotationDeleteViewpoint(vrnode viewpoint) Delete a viewpoint from an annotation. |
void | vrAnnotationEditCommentText(vrnode comment) Activates an interactive editor for editing an annotation comment. |
string | vrAnnotationGetCommentText(vrnode comment) Gets the text from an annotation comment. |
table | vrAnnotationListAll() Lists all annotations in the scene. |
table | vrAnnotationListComments(vrnode annotation) Lists all comments in an annotation. |
table | vrAnnotationListViewpoints(vrnode annotation) Lists all viewpoints in an annotation. |
vrnode | vrAnnotationNext(number flyTime =0.0) Flies to and returns the next annotation after the currently active one. |
vrnode | vrAnnotationPrev(number flyTime =0.0) Flies to and returns the previous annotation before the currently active one. |
void | vrAnnotationSetActive(vrnode annotation, number flyTime =0.0) Sets the specified annotation as the active one and flies to its default viewpoint. |
void | vrAnnotationSetCommentText(vrnode comment, string text) Sets the text in an annotation comment. |
void | vrAnnotationSetDefaultViewpoint(vrnode annotation, vrnode viewpoint) Sets the default viewpoint for an annotation. |
void | vrAnnotationToggleInfoDisplay(vrnode annotation) Toggles the visibility of annotation comments and other information gizmos. |
void | vrAnnotationUpdateViewpoint(vrnode viewpoint) Recaptures the view from the specified viewpoint. |
Functions Documentation
vrAnnotationCreate
vrnode vrAnnotationCreate(
vrvec3 worldPos,
vrvec3 worldRot,
vrnode targetNode
)
Create an annotation at the specified location, linked to the specified object.
Parameters:
- worldPos World location of the annotation point
- worldRot World rotation of the annotation point
- targetNode Object being annotated
Return: The new annotation
vrAnnotationCreateComment
vrnode vrAnnotationCreateComment(
vrnode annotation
)
Create a comment on an annotation.
Return: The new comment
vrAnnotationCreateViewpoint
vrnode vrAnnotationCreateViewpoint(
vrnode annotation
)
Create a viewpoint on an annotation.
Return: The new viewpoint
vrAnnotationDelete
void vrAnnotationDelete(
vrnode annotation
)
Delete an annotation and all associated comments and viewpoints.
vrAnnotationDeleteComment
void vrAnnotationDeleteComment(
vrnode comment
)
Delete a comment from an annotation.
vrAnnotationDeleteViewpoint
void vrAnnotationDeleteViewpoint(
vrnode viewpoint
)
Delete a viewpoint from an annotation.
vrAnnotationEditCommentText
void vrAnnotationEditCommentText(
vrnode comment
)
Activates an interactive editor for editing an annotation comment.
vrAnnotationGetCommentText
string vrAnnotationGetCommentText(
vrnode comment
)
Gets the text from an annotation comment.
vrAnnotationListAll
table vrAnnotationListAll()
Lists all annotations in the scene.
Return: List of annotation nodes
vrAnnotationListComments
table vrAnnotationListComments(
vrnode annotation
)
Lists all comments in an annotation.
Return: List of comment nodes
vrAnnotationListViewpoints
table vrAnnotationListViewpoints(
vrnode annotation
)
Lists all viewpoints in an annotation.
Return: List of viewpoint nodes
vrAnnotationNext
vrnode vrAnnotationNext(
number flyTime =0.0
)
Flies to and returns the next annotation after the currently active one.
Parameters:
- flyTime The number of seconds to spend flying to the viewpoint
vrAnnotationPrev
vrnode vrAnnotationPrev(
number flyTime =0.0
)
Flies to and returns the previous annotation before the currently active one.
Parameters:
- flyTime The number of seconds to spend flying to the viewpoint
vrAnnotationSetActive
void vrAnnotationSetActive(
vrnode annotation,
number flyTime =0.0
)
Sets the specified annotation as the active one and flies to its default viewpoint.
Parameters:
- flyTime The number of seconds to spend flying to the viewpoint
vrAnnotationSetCommentText
void vrAnnotationSetCommentText(
vrnode comment,
string text
)
Sets the text in an annotation comment.
vrAnnotationSetDefaultViewpoint
void vrAnnotationSetDefaultViewpoint(
vrnode annotation,
vrnode viewpoint
)
Sets the default viewpoint for an annotation.
vrAnnotationToggleInfoDisplay
void vrAnnotationToggleInfoDisplay(
vrnode annotation
)
Toggles the visibility of annotation comments and other information gizmos.
vrAnnotationUpdateViewpoint
void vrAnnotationUpdateViewpoint(
vrnode viewpoint
)
Recaptures the view from the specified viewpoint.