Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.29 KB

SpatialQueryResponseItem.md

File metadata and controls

31 lines (22 loc) · 1.29 KB

SpatialQueryResponseItem

Properties

Name Type Description Notes
prim Prim
distance float Distance from the query center to the bounding box midpoint of the result.
vector List[float] Vector from the query center to the result. If the `transformation_matrix` argument is provided, the vector is transformed using the given matrix.

Example

from usd_search_client.models.spatial_query_response_item import SpatialQueryResponseItem

# update the JSON string below
json = "{}"
# create an instance of SpatialQueryResponseItem from a JSON string
spatial_query_response_item_instance = SpatialQueryResponseItem.from_json(json)
# print the JSON string representation of the object
print(SpatialQueryResponseItem.to_json())

# convert the object into a dict
spatial_query_response_item_dict = spatial_query_response_item_instance.to_dict()
# create an instance of SpatialQueryResponseItem from a dict
spatial_query_response_item_from_dict = SpatialQueryResponseItem.from_dict(spatial_query_response_item_dict)

[Back to Model list] [Back to API list] [Back to README]