file_path
stringlengths
32
153
content
stringlengths
0
3.14M
omniverse-code/kit/exts/omni.kit.widget.nucleus_info/omni/kit/widget/nucleus_info/ui.py
# Copyright (c) 2018-2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import Callable from collections import namedtuple from omni.kit.window.popup_dialog import PopupDialog import omni.ui as ui class NucleusAboutDialog(PopupDialog): """Dialog to show the omniverse server info.""" FieldDef = namedtuple("AboutDialogFieldDef", "name version") _services_names = ["Discovery", "Auth", "Tagging", "NGSearch", "Search"] def __init__( self, nucleus_info, nucleus_services, ): """ Args: nucleus_info ([ServerInfo]): nucleus server's information. nucleus_services ([ServicesData]): nucleus server's services Note: AboutDialog.FieldDef: A namedtuple of (name, version) for describing the service's info, """ super().__init__( width=400, title="About", ok_handler=lambda self: self.hide(), ok_label="Close", modal=True, ) self._nucleus_info = nucleus_info self._nucleus_services = self._parse_services(nucleus_services) self._build_ui() def _parse_services(self, nucleus_services): parse_res = set() if nucleus_services: for service in nucleus_services: parse_res.add( NucleusAboutDialog.FieldDef( service.service_interface.name, service.meta.get('version','unknown') ) ) return parse_res def _build_ui(self) -> None: with self._window.frame: with ui.ZStack(spacing=6): ui.Rectangle(style_type_name_override="Background") with ui.VStack(style_type_name_override="Dialog", spacing=6): ui.Spacer(height=25) with ui.HStack(style_type_name_override="Dialog", spacing=6, height=60): ui.Spacer(width=15) ui.Image( "resources/glyphs/omniverse_logo.svg", width=50, height=50, alignment=ui.Alignment.CENTER ) ui.Spacer(width=5) with ui.VStack(style_type_name_override="Dialog"): ui.Spacer(height=10) ui.Label("Nucleus", style={"font_size": 20}) ui.Label(self._nucleus_info.version) ui.Spacer(height=5) with ui.HStack(style_type_name_override="Dialog"): ui.Spacer(width=15) with ui.VStack(style_type_name_override="Dialog"): ui.Label("Services", style={"font_size": 20}) for service_name in NucleusAboutDialog._services_names: self._build_service_item(service_name) ui.Label("Features", style={"font_size": 20}) self._build_info_item(True, "Versioning") self._build_info_item(self._nucleus_info.checkpoints_enabled, "Atomic checkpoints") self._build_info_item(self._nucleus_info.omniojects_enabled, "Omni-objects V2") self._build_ok_cancel_buttons(disable_cancel_button=True) def _build_service_item(self, service_name: str): supported = False version = "unknown" for service in self._nucleus_services: if service.name.startswith(service_name): supported = True version = service.version break self._build_info_item(supported, service_name + " " + version) def _build_info_item(self, supported: bool, info: str): with ui.HStack(style_type_name_override="Dialog", spacing=6): ui.Spacer(width=5) image_url = "resources/icons/Ok_64.png" if supported else "resources/icons/Cancel_64.png" ui.Image(image_url, width=20, height=20, alignment=ui.Alignment.CENTER) ui.Label(info) ui.Spacer() def destroy(self) -> None: """Destructor.""" self._window = None
omniverse-code/kit/exts/omni.kit.widget.nucleus_info/omni/kit/widget/nucleus_info/tests/test_discovery.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## from functools import partial from unittest.mock import patch from omni.kit.test.async_unittest import AsyncTestCase from ..service_discovery import ServiceDiscovery from ..ui import NucleusAboutDialog from .. import get_nucleus_info class MockServiceInterface: def __init__(self, name): self.name = name class MockService: def __init__(self, name): self.service_interface = MockServiceInterface(name) self.meta = {"version": "test_version"} class MockInfo: def __init__(self): self.version = "test_nucleus_version" self.checkpoints_enabled = True self.omniojects_enabled = True class TestDiscovery(AsyncTestCase): # Before running each test async def setUp(self): self._mock_service_content= [MockService("NGSearch"),MockService("Object"),MockService("Search")] self._mock_service_localhost= [MockService("Object"),MockService("Otherservice")] # After running each test async def tearDown(self): pass async def _mock_get_nucleus_services_async(self, discovery, url: str): if url == "omniverse://content": discovery._nucleus_services["omniverse://content"] = self._mock_service_content return discovery._nucleus_services["omniverse://content"] if url == "omniverse://localhost": discovery._nucleus_services["omniverse://localhost"] = self._mock_service_localhost return discovery._nucleus_services["omniverse://localhost"] async def test_service_discovery(self): discovery = ServiceDiscovery() test_unknow = await discovery.get_nucleus_services_async("unknow://unknow") self.assertIsNone(test_unknow) with patch.object(discovery, "get_nucleus_services_async", side_effect=partial(self._mock_get_nucleus_services_async,discovery)): content_services = await discovery.get_nucleus_services_async("omniverse://content") await discovery.get_nucleus_services_async("omniverse://localhost") self.assertIsNone(discovery.get_nucleus_services("unknow://unknow")) self.assertTrue(discovery.is_service_supported_for_nucleus("omniverse://content", "NGSearch")) self.assertFalse(discovery.is_service_supported_for_nucleus("omniverse://localhost", "NGSearch")) self.assertFalse(discovery.is_service_supported_for_nucleus("l://other", "other")) self.assertTrue(discovery.is_service_supported_for_nucleus("omniverse://localhost", "Otherservice")) self.assertEqual(discovery.get_nucleus_services("omniverse://content"), self._mock_service_content) self.assertEqual(discovery.get_nucleus_services("omniverse://localhost"), self._mock_service_localhost) dialog = NucleusAboutDialog(MockInfo(), content_services) dialog.show() self.assertTrue(dialog._window.visible) dialog.hide() self.assertFalse(dialog._window.visible) dialog.destroy() discovery.destory() async def test_interface(self): inst = get_nucleus_info() test_unknow = await inst.get_nucleus_services_async("unknow://unknow") self.assertIsNone(test_unknow) discovery = ServiceDiscovery() with patch.object(discovery, "get_nucleus_services_async", side_effect=partial(self._mock_get_nucleus_services_async,discovery)),\ patch.object(discovery, "get_nucleus_services", side_effect=partial(self._mock_get_nucleus_services_async,discovery)),\ patch.object(inst, "_discovery", side_effect=discovery): await discovery.get_nucleus_services_async("omniverse://content") await discovery.get_nucleus_services_async("omniverse://localhost") self.assertTrue(inst.is_service_available("omniverse://content", "NGSearch")) self.assertTrue(inst.is_service_available("omniverse://localhost", "Otherservice")) discovery.destory() inst._discovery = None self.assertIsNone(inst.get_nucleus_services("omniverse://content")) self.assertIsNone(inst.get_nucleus_services("omniverse://localhost"))
omniverse-code/kit/exts/omni.kit.widget.nucleus_info/omni/kit/widget/nucleus_info/tests/__init__.py
from .test_discovery import *
omniverse-code/kit/exts/omni.kit.widget.nucleus_info/docs/index.rst
omni.kit.widget.nucleus_info ############################# .. toctree:: :maxdepth: 1 CHANGELOG nucleus info Widgets ========================== .. automodule:: omni.kit.widget.nucleus_info :platform: Windows-x86_64, Linux-x86_64 :members: :undoc-members: :show-inheritance:
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/event.py
import carb.events HOTKEY_REGISTER_EVENT: int = carb.events.type_from_string("omni.kit.hotkeys.core.HOTKEY_REGISTER") HOTKEY_DEREGISTER_EVENT: int = carb.events.type_from_string("omni.kit.hotkeys.core.HOTKEY_DEREGISTER") HOTKEY_CHANGED_EVENT: int = carb.events.type_from_string("omni.kit.hotkeys.core.HOTKEY_CHANGED")
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/registry.py
__all__ = ["HotkeyRegistry"] from typing import List, Optional, Union, Dict, Tuple import carb import carb.settings import omni.kit.app from .hotkey import Hotkey from .key_combination import KeyCombination from .filter import HotkeyFilter from .storage import HotkeyStorage from .event import HOTKEY_REGISTER_EVENT, HOTKEY_DEREGISTER_EVENT, HOTKEY_CHANGED_EVENT from .keyboard_layout import KeyboardLayoutDelegate # Extension who register hotkey for menu items HOTKEY_EXT_ID_MENU_UTILS = "omni.kit.menu.utils" SETTING_DEFAULT_KEYBOARD_LAYOUT = "/exts/omni.kit.hotkeys.core/default_keyboard_layout" class HotkeyRegistry: """ Registry of hotkeys. """ class Result: OK = "OK" ERROR_NO_ACTION = "No action defined" ERROR_ACTION_DUPLICATED = "Duplicated action definition" ERROR_KEY_INVALID = "Invaid key definition" ERROR_KEY_DUPLICATED = "Duplicated key definition" def __init__(self): """ Define hotkey registry object. """ self._hotkeys: List[Hotkey] = [] self._hotkeys_by_key_and_context: Dict[KeyCombination, Dict[str, Hotkey]] = {} self._hotkeys_by_key_and_window: Dict[KeyCombination, Dict[str, Hotkey]] = {} self._global_hotkeys_by_key: Dict[KeyCombination, Hotkey] = {} self._event_stream = omni.kit.app.get_app().get_message_bus_event_stream() self.__hotkey_storage = HotkeyStorage() self.__default_key_combinations: Dict[str, str] = {} self.__default_filters: Dict[str, HotkeyFilter] = {} self.__last_error = HotkeyRegistry.Result.OK self.__settings = carb.settings.get_settings() keyboard_layout = self.__settings.get("/persistent" + SETTING_DEFAULT_KEYBOARD_LAYOUT) if keyboard_layout is None: keyboard_layout = self.__settings.get(SETTING_DEFAULT_KEYBOARD_LAYOUT) self.__keyboard_layout = KeyboardLayoutDelegate.get_instance(keyboard_layout) # Here we only append user hotkeys. # For system hotkeys which is changed, update when registering. self.__append_user_hotkeys() @property def last_error(self) -> "HotkeyRegistry.Result": """ Error code for last hotkey command. """ return self.__last_error @property def keyboard_layout(self) -> Optional[KeyboardLayoutDelegate]: """ Current keyboard layout object in using. """ return self.__keyboard_layout def switch_layout(self, layout_name: str) -> None: """ Change keyboard layout. Args: layout_name (str): Name of keyboard layout to use. """ def __get_layout_keys() -> List[Hotkey]: # Ignore user hotkeys and modified hotkeys return [hotkey for hotkey in self._hotkeys if not self.is_user_hotkey(hotkey) and self.get_hotkey_default(hotkey)[0] == hotkey.key_combination.id] layout = KeyboardLayoutDelegate.get_instance(layout_name) if not layout or layout == self.__keyboard_layout: return carb.log_info(f"Change keyboard layout to {layout_name}") refresh_menu = False # Restore hotkey key combination to default for hotkey in __get_layout_keys(): # Restore key combination if self.__keyboard_layout: restore_key_combination = self.__keyboard_layout.restore_key(hotkey.key_combination) if restore_key_combination: self.__edit_hotkey_internal(hotkey, restore_key_combination, filter=hotkey.filter) # Map to new key combination new_key_combination = layout.map_key(hotkey.key_combination) if new_key_combination: self.__edit_hotkey_internal(hotkey, new_key_combination, filter=hotkey.filter) self.__default_key_combinations[hotkey.id] = new_key_combination.id if (restore_key_combination or new_key_combination) and hotkey.hotkey_ext_id == HOTKEY_EXT_ID_MENU_UTILS: refresh_menu = True self.__keyboard_layout = layout self.__settings.set("/persistent" + SETTING_DEFAULT_KEYBOARD_LAYOUT, layout_name) if refresh_menu: # Refresh menu items for new hotkey text try: import omni.kit.menu.utils # pylint: disable=redefined-outer-name omni.kit.menu.utils.rebuild_menus() except ImportError: pass def register_hotkey(self, *args, **kwargs) -> Optional[Hotkey]: """ Register hotkey by hotkey object or arguments. Args could be: .. code:: python register_hotkey(hotkey: Hotkey) or .. code:: python register_hotkey( hotkey_ext_id: str, key: Union[str, KeyCombination], action_ext_id: str, action_id: str, filter: Optional[HotkeyFilter] = None ) Returns: Created hotkey object if register succeeded. Otherwise return None. """ return self._register_hotkey_obj(args[0]) if len(args) == 1 else self._register_hotkey_args(*args, **kwargs) def edit_hotkey( self, hotkey: Hotkey, key: Union[str, KeyCombination], filter: Optional[HotkeyFilter] # noqa: A002 # pylint: disable=redefined-builtin ) -> "HotkeyRegistry.Result": """ Change key combination of hotkey object. Args: hotkey (Hotkey): Hotkey object to change. key (Union[str, KeyCombination]): New key combination. filter (Optional[HotkeyFiler]): New filter. Returns: Result code. """ key_combination = KeyCombination(key) if isinstance(key, str) else key self.__last_error = self.verify_hotkey(hotkey, key_combination=key_combination, hotkey_filter=filter) if self.__last_error != HotkeyRegistry.Result.OK: return self.__last_error self.__edit_hotkey_internal(hotkey, key_combination, filter) self.__hotkey_storage.edit_hotkey(hotkey) if hotkey.hotkey_ext_id == HOTKEY_EXT_ID_MENU_UTILS: # Refresh menu items for new hotkey text try: import omni.kit.menu.utils # pylint: disable=redefined-outer-name omni.kit.menu.utils.rebuild_menus() except ImportError: pass return HotkeyRegistry.Result.OK def __edit_hotkey_internal( self, hotkey: Hotkey, key_combination: KeyCombination, filter: Optional[HotkeyFilter] # noqa: A002 # pylint: disable=redefined-builtin ) -> None: self.__deregister_hotkey_maps(hotkey) hotkey.key_combination = key_combination hotkey.filter = filter self.__register_hotkey_maps(hotkey) self._send_event(HOTKEY_CHANGED_EVENT, hotkey) def deregister_hotkey(self, *args, **kwargs) -> bool: """ Deregister hotkey by hotkey object or arguments. Args could be: .. code:: python deregister_hotkey(hotkey: Hotkey) or .. code:: python deregister_hotkey( hotkey_ext_id: str, key: Union[str, KeyCombination], filter: Optional[HotkeyFilter] = None ) Returns: True if hotkey found. Otherwise return False. """ return self._deregister_hotkey_obj(args[0]) if len(args) == 1 else self._deregister_hotkey_args(*args, **kwargs) def deregister_hotkeys(self, hotkey_ext_id: str, key: Union[str, KeyCombination]) -> None: """ Deregister hotkeys registered from a special extension with speicial key combination. Args: hotkey_ext_id (str): Extension id that hotkeys belongs to. key (Union[str, KeyCombination]): Key combination. """ discovered_hotkeys = self.get_hotkeys(hotkey_ext_id, key) for hotkey in discovered_hotkeys: self._deregister_hotkey_obj(hotkey) def deregister_all_hotkeys_for_extension(self, hotkey_ext_id: Optional[str]) -> None: """ Deregister hotkeys registered from a special extension. Args: hotkey_ext_id (Optional[str]): Extension id that hotkeys belongs to. If None, discover all global hotkeys """ discovered_hotkeys = self.get_all_hotkeys_for_extension(hotkey_ext_id) for hotkey in discovered_hotkeys: self._deregister_hotkey_obj(hotkey) def deregister_all_hotkeys_for_filter(self, filter: HotkeyFilter) -> None: # noqa: A002 # pylint: disable=redefined-builtin """ Deregister hotkeys registered with speicial filter. Args: filter (HotkeyFilter): Hotkey HotkeyFilter. """ discovered_hotkeys = self.get_all_hotkeys_for_filter(filter) for hotkey in discovered_hotkeys: self._deregister_hotkey_obj(hotkey) def get_hotkey(self, hotkey_ext_id: str, key: Union[str, KeyCombination], filter: Optional[HotkeyFilter] = None) -> Optional[Hotkey]: # noqa: A002 # pylint: disable=redefined-builtin """ Discover a registered hotkey. Args: hotkey_ext_id (str): Extension id which owns the hotkey. key (Union[str, KeyCombination]): Key combination. Keyword Args: filter (Optional[HotkeyFilter]): Hotkey filter. Default None Returns: Hotkey object if discovered. Otherwise None. """ key_combination = KeyCombination(key) if isinstance(key, str) else key for hotkey in self._hotkeys: if hotkey.hotkey_ext_id == hotkey_ext_id and hotkey.key_combination == key_combination and hotkey.filter == filter: return hotkey return None def get_hotkey_for_trigger(self, key: Union[str, KeyCombination], context: Optional[str] = None, window: Optional[str] = None) -> Optional[Hotkey]: """ Discover hotkey for trigger from key combination and filter. Args: key (Union[str, KeyCombination]): Key combination. Keyword Args: context (str): Context assigned to Hotkey window (str): Window assigned to Hotkey Returns: Hotkey object if discovered. Otherwise None. """ key_combination = KeyCombination(key) if isinstance(key, str) else key if context: return ( self._hotkeys_by_key_and_context[key_combination][context] if key_combination in self._hotkeys_by_key_and_context and context in self._hotkeys_by_key_and_context[key_combination] else None ) if window: return ( self._hotkeys_by_key_and_window[key_combination][window] if key_combination in self._hotkeys_by_key_and_window and window in self._hotkeys_by_key_and_window[key_combination] else None ) return self._global_hotkeys_by_key[key_combination] if key_combination in self._global_hotkeys_by_key else None def get_hotkey_for_filter(self, key: Union[str, KeyCombination], filter: HotkeyFilter) -> Optional[Hotkey]: # noqa: A002 # pylint: disable=redefined-builtin """ Discover hotkey registered with special key combination and filter Args: key (Union[str, KeyCombination]): Key combination. filter (HotkeyFilter): Hotkey filter. Returns: First discovered hotkey. None if nothing found. """ if filter: if filter.context: return self.get_hotkey_for_trigger(key, context=filter.context) if filter.windows: for window in filter.windows: found = self.get_hotkey_for_trigger(key, window=window) if found: return found return None return self.get_hotkey_for_trigger(key) def get_hotkeys(self, hotkey_ext_id: str, key: Union[str, KeyCombination]) -> List[Hotkey]: """ Discover hotkeys registered from a special extension with special key combination. Args: hotkey_ext_id (str): Extension id that hotkeys belongs to. key (Union[str, KeyCombination]): Key combination. Returns: List of discovered hotkeys. """ key_combination = KeyCombination(key) if isinstance(key, str) else key return [hotkey for hotkey in self._hotkeys if hotkey.hotkey_ext_id == hotkey_ext_id and hotkey.key_combination == key_combination] def get_all_hotkeys(self) -> List[Hotkey]: """ Discover all registered hotkeys. Returns: List of all registered hotkeys. """ return self._hotkeys def get_all_hotkeys_for_extension(self, hotkey_ext_id: Optional[str]) -> List[Hotkey]: """ Discover hotkeys registered from a special extension. Args: hotkey_ext_id (Optional[str]): Extension id that hotkeys belongs to. If None, discover all global hotkeys Returns: List of discovered hotkeys. """ return [hotkey for hotkey in self._hotkeys if hotkey.filter is None] if hotkey_ext_id is None \ else [hotkey for hotkey in self._hotkeys if hotkey.hotkey_ext_id == hotkey_ext_id] def get_all_hotkeys_for_key(self, key: Union[str, KeyCombination]) -> List[Hotkey]: """ Discover hotkeys registered from a special key. Args: key (Union[str, KeyCombination]): Key combination. Returns: List of discovered hotkeys. """ key_combination = KeyCombination(key) if isinstance(key, str) else key return [hotkey for hotkey in self._hotkeys if hotkey.key_combination == key_combination] def get_all_hotkeys_for_filter(self, filter: HotkeyFilter) -> List[Hotkey]: # noqa: A002 # pylint: disable=redefined-builtin """ Discover hotkeys registered with speicial filter. Args: filter (HotkeyFilter): Hotkey HotkeyFilter. Returns: List of discovered hotkeys. """ return [hotkey for hotkey in self._hotkeys if hotkey.filter == filter] def _register_hotkey_obj(self, hotkey: Hotkey) -> Optional[Hotkey]: self.__last_error = self.has_duplicated_hotkey(hotkey) if self.__last_error != HotkeyRegistry.Result.OK: carb.log_warn(f"[Hotkey] Cannot register {hotkey}, error code: {self.__last_error}") return None # Record default key binding and filter default_key_combination = hotkey.key_combination default_filter = hotkey.filter # Update key binding from keyboard layout if self.__keyboard_layout and not self.is_user_hotkey(hotkey): new_key_combination = self.__keyboard_layout.map_key(hotkey.key_combination) if new_key_combination: hotkey.key_combination = new_key_combination default_key_combination = new_key_combination # Update key binding/filter definition from storage user_hotkey = self.__hotkey_storage.get_hotkey(hotkey) if user_hotkey: if hotkey.key_combination != user_hotkey.key_combination: carb.log_info(f"[Hotkey] Replace {hotkey.action_text}.{hotkey.key_text} with {user_hotkey.key_text}") hotkey.key_combination = user_hotkey.key_combination if hotkey.filter != user_hotkey.filter: carb.log_info(f"[Hotkey] Replace {hotkey.action_text}.{hotkey.filter_text} with {user_hotkey.filter_text}") hotkey.filter = user_hotkey.filter self.__last_error = self.verify_hotkey(hotkey) if self.__last_error != HotkeyRegistry.Result.OK: carb.log_warn(f"[Hotkey] Cannot register {hotkey}, error code: {self.__last_error}") return None # Append hotkey self._hotkeys.append(hotkey) self.__default_key_combinations[hotkey.id] = default_key_combination.id self.__default_filters[hotkey.id] = default_filter self.__register_hotkey_maps(hotkey) # Save to storage self.__hotkey_storage.register_user_hotkey(hotkey) self._send_event(HOTKEY_REGISTER_EVENT, hotkey) return hotkey def _register_hotkey_args( self, hotkey_ext_id: str, key: Union[str, KeyCombination], action_ext_id: str, action_id: str, filter: Optional[HotkeyFilter] = None # noqa: A002 # pylint: disable=redefined-builtin ) -> Optional[Hotkey]: hotkey = Hotkey(hotkey_ext_id, key, action_ext_id, action_id, filter=filter) return self._register_hotkey_obj(hotkey) def _deregister_hotkey_obj(self, hotkey: Hotkey) -> bool: if hotkey in self._hotkeys: self._hotkeys.remove(hotkey) self.__deregister_hotkey_maps(hotkey) self.__default_key_combinations.pop(hotkey.id) self.__default_filters.pop(hotkey.id) self.__hotkey_storage.deregister_hotkey(hotkey) self._send_event(HOTKEY_DEREGISTER_EVENT, hotkey) return True return False def _deregister_hotkey_args( self, hotkey_ext_id: str, key: Union[str, KeyCombination], filter: Optional[HotkeyFilter] = None # noqa: A002 # pylint: disable=redefined-builtin ) -> bool: hotkey = self.get_hotkey(hotkey_ext_id, key, filter=filter) return self._deregister_hotkey_obj(hotkey) if hotkey else False def _send_event(self, event: int, hotkey: Hotkey): self._event_stream.push( event, payload={ "hotkey_ext_id": hotkey.hotkey_ext_id, "key": hotkey.key_combination.as_string, "trigger_press": hotkey.key_combination.trigger_press, "action_ext_id": hotkey.action.extension_id if hotkey.action else "", "action_id": hotkey.action.id if hotkey.action else "" } ) def __register_hotkey_maps(self, hotkey: Hotkey) -> None: if hotkey.key_combination.key == "": return if hotkey.filter is None: self._global_hotkeys_by_key[hotkey.key_combination] = hotkey else: if hotkey.filter.context: if hotkey.key_combination not in self._hotkeys_by_key_and_context: self._hotkeys_by_key_and_context[hotkey.key_combination] = {} if hotkey.filter.context in self._hotkeys_by_key_and_context[hotkey.key_combination]: carb.log_warn(f"Hotkey {hotkey.key_combination.as_string} to context {hotkey.filter.context} already exists: ") old_hotkey = self._hotkeys_by_key_and_context[hotkey.key_combination][hotkey.filter.context] carb.log_warn(f" existing from {old_hotkey.hotkey_ext_id}") carb.log_warn(f" replace with the one from {hotkey.hotkey_ext_id}") self._hotkeys_by_key_and_context[hotkey.key_combination][hotkey.filter.context] = hotkey if hotkey.filter.windows: if hotkey.key_combination not in self._hotkeys_by_key_and_window: self._hotkeys_by_key_and_window[hotkey.key_combination] = {} for window in hotkey.filter.windows: if window in self._hotkeys_by_key_and_window[hotkey.key_combination]: carb.log_warn(f"Hotkey {hotkey.key_combination.as_string} to window {window} already exists: ") old_hotkey = self._hotkeys_by_key_and_window[hotkey.key_combination][window] carb.log_warn(f" existing from {old_hotkey.hotkey_ext_id}") carb.log_warn(f" replace with the one from {hotkey.hotkey_ext_id}") self._hotkeys_by_key_and_window[hotkey.key_combination][window] = hotkey def __deregister_hotkey_maps(self, hotkey: Hotkey) -> bool: if hotkey.key_combination.key == "": return if hotkey.filter: if hotkey.filter.context \ and hotkey.filter.context in self._hotkeys_by_key_and_context[hotkey.key_combination] \ and self._hotkeys_by_key_and_context[hotkey.key_combination][hotkey.filter.context] == hotkey: self._hotkeys_by_key_and_context[hotkey.key_combination].pop(hotkey.filter.context) if hotkey.filter.windows: for window in hotkey.filter.windows: if window in self._hotkeys_by_key_and_window[hotkey.key_combination] \ and self._hotkeys_by_key_and_window[hotkey.key_combination][window] == hotkey: self._hotkeys_by_key_and_window[hotkey.key_combination].pop(window) else: if hotkey.key_combination in self._global_hotkeys_by_key: self._global_hotkeys_by_key.pop(hotkey.key_combination) def __append_user_hotkeys(self): user_hotkeys = self.__hotkey_storage.get_user_hotkeys() for hotkey in user_hotkeys: self._hotkeys.append(hotkey) self.__default_key_combinations[hotkey.id] = hotkey.key_combination.id self.__default_filters[hotkey.id] = hotkey.filter self.__register_hotkey_maps(hotkey) def clear_storage(self) -> None: """ Clear user defined hotkeys. """ user_hotkeys = self.__hotkey_storage.get_user_hotkeys() for hotkey in user_hotkeys: if hotkey in self._hotkeys: self._hotkeys.remove(hotkey) self.__deregister_hotkey_maps(hotkey) self.__default_key_combinations.pop(hotkey.id) self.__default_filters.pop(hotkey.id) self.__hotkey_storage.clear_hotkeys() def export_storage(self, url: str) -> None: """ Export user defined hotkeys to file. Args: url (str): File path to export user defined hotkeys. """ self.__hotkey_storage.save_preset(url) def import_storage(self, url: str) -> bool: """ Import user defined hotkeys from file. Args: url (str): File path to import user defined hotkeys. """ preset = self.__hotkey_storage.preload_preset(url) if preset is None: return False # First we need to restore all hotkeys self.restore_defaults() self.__hotkey_storage.load_preset(preset) # For system hotkeys, change to new definition in preset for hotkey in self._hotkeys: user_hotkey = self.__hotkey_storage.get_hotkey(hotkey) if user_hotkey: self.__deregister_hotkey_maps(hotkey) if hotkey.key_combination != user_hotkey.key_combination: carb.log_info(f"[Hotkey] Replace {hotkey.action_text}.{hotkey.key_text} with {user_hotkey.key_text}") hotkey.key_combination = user_hotkey.key_combination if hotkey.filter != user_hotkey.filter: carb.log_info(f"[Hotkey] Replace {hotkey.action_text}.{hotkey.filter_text} with {user_hotkey.filter_text}") hotkey.filter = user_hotkey.filter self.__register_hotkey_maps(hotkey) # Apppend user hotkeys self.__append_user_hotkeys() return True def has_duplicated_hotkey(self, hotkey: Hotkey) -> "HotkeyRegistry.Result": """ Check if already have hotkey registered. Args: hotkey (Hotkey): Hotkey object to check. Returns: Result code. """ exist_hotkey = self.__default_key_combinations.get(hotkey.id, None) if exist_hotkey: carb.log_warn(f"[Hotkey] duplicated action as {exist_hotkey} with {hotkey.id}!") return HotkeyRegistry.Result.ERROR_ACTION_DUPLICATED return HotkeyRegistry.Result.OK def verify_hotkey(self, hotkey: Hotkey, key_combination: Optional[KeyCombination] = None, hotkey_filter: Optional[HotkeyFilter] = None) -> "HotkeyRegistry.Result": """ Verify hotkey. """ if not hotkey.action_text: return HotkeyRegistry.Result.ERROR_NO_ACTION if key_combination is None: key_combination = hotkey.key_combination if not key_combination.is_valid: return HotkeyRegistry.Result.ERROR_KEY_INVALID if key_combination.key != "": hotkey_filter = hotkey.filter if hotkey_filter is None else hotkey_filter found = self.get_hotkey_for_filter(key_combination, hotkey_filter) if found and found.id != hotkey.id: carb.log_warn(f"[Hotkey] duplicated key:'{key_combination}'") carb.log_warn(f" -- {hotkey}") carb.log_warn(f" -- {found}") return HotkeyRegistry.Result.ERROR_KEY_DUPLICATED return HotkeyRegistry.Result.OK def get_hotkey_default(self, hotkey: Hotkey) -> Tuple[str, HotkeyFilter]: """ Discover hotkey default key binding and filter. Args: hotkey (Hotkey): Hotkey object. Returns: Tuple of key binding string and hotkey filter object. """ return ( self.__default_key_combinations.get(hotkey.id, None), self.__default_filters.get(hotkey.id, None) ) def restore_defaults(self) -> None: """ Clean user defined hotkeys and restore system hotkey to default """ to_remove_hotkeys = [] for hotkey in self._hotkeys: saved_hotkey = self.__hotkey_storage.get_hotkey(hotkey) if saved_hotkey: if self.__hotkey_storage.is_user_hotkey(hotkey): # User-defined hotkey, remove later self.__deregister_hotkey_maps(hotkey) self.__default_key_combinations.pop(hotkey.id, None) self.__default_filters.pop(hotkey.id, None) to_remove_hotkeys.append(hotkey) else: # System hotkey, restore key-bindings and filter self.__deregister_hotkey_maps(hotkey) if hotkey.id in self.__default_key_combinations: hotkey.key_combination = KeyCombination(self.__default_key_combinations[hotkey.id]) if hotkey.id in self.__default_filters: hotkey.filter = self.__default_filters[hotkey.id] self.__register_hotkey_maps(hotkey) for hotkey in to_remove_hotkeys: self._hotkeys.remove(hotkey) self.__hotkey_storage.clear_hotkeys() def is_user_hotkey(self, hotkey: Hotkey) -> bool: """ If a user defined hotkey. Args: hotkey (Hotkey): Hotkey object. Returns: True if user defined. Otherwise False. """ return self.__hotkey_storage.is_user_hotkey(hotkey)
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/trigger.py
__all__ = ["HotkeyTrigger"] import asyncio import carb import carb.input import omni.appwindow import omni.kit.app from .registry import HotkeyRegistry from .context import HotkeyContext from .key_combination import KeyCombination from .hovered_window import get_hovered_window SETTING_ALLOW_LIST = "/exts/omni.kit.hotkeys.core/allow_list" class HotkeyTrigger: def __init__(self, registry: HotkeyRegistry, context: HotkeyContext): """ Trigger hotkey on keyboard input. Args: registry (HotkeyRegistry): Hotkey registry. context (HotkeyContext): Hotkey context. """ self._registry = registry self._context = context self._input = carb.input.acquire_input_interface() self._input_sub_id = self._input.subscribe_to_input_events(self._on_input_event, order=0) self.__app_window = omni.appwindow.get_default_app_window() self._stop_event = asyncio.Event() self._work_queue = asyncio.Queue() self.__run_future = asyncio.ensure_future(self._run()) self.__settings = carb.settings.get_settings() self._allow_list = self.__settings.get(SETTING_ALLOW_LIST) def __on_allow_list_change(value, event_type) -> None: self._allow_list = self.__settings.get(SETTING_ALLOW_LIST) self._sub_allow_list = omni.kit.app.SettingChangeSubscription(SETTING_ALLOW_LIST, __on_allow_list_change) def destroy(self): self._stop_event.set() self._work_queue.put_nowait((None, None, None)) self.__run_future.cancel() self._input.unsubscribe_to_input_events(self._input_sub_id) self._input_sub_id = None self._input = None self._sub_allow_list = None def _on_input_event(self, event, *_): if event.deviceType == carb.input.DeviceType.KEYBOARD \ and event.event.type in [carb.input.KeyboardEventType.KEY_PRESS, carb.input.KeyboardEventType.KEY_RELEASE]: is_down = event.event.type == carb.input.KeyboardEventType.KEY_PRESS if event.deviceType == carb.input.DeviceType.KEYBOARD: key_combination = KeyCombination(event.event.input, modifiers=event.event.modifiers, trigger_press=is_down) if not self._allow_list or key_combination.as_string in self._allow_list and self._registry.get_all_hotkeys_for_key(key_combination): (mouse_pos_x, mouse_pos_y) = self._input.get_mouse_coords_pixel(self.__app_window.get_mouse()) self._work_queue.put_nowait((key_combination, mouse_pos_x, mouse_pos_y)) return True def __trigger(self, key_combination: KeyCombination, pos_x: float, pos_y: float): hotkey = None # First: find hotkey assigned to current context current_context = self._context.get() if current_context: hotkey = self._registry.get_hotkey_for_trigger(key_combination, context=current_context) if not hotkey: current_window = get_hovered_window(pos_x, pos_y) if current_window: hotkey = self._registry.get_hotkey_for_trigger(key_combination, window=current_window.title) if not hotkey: # Finally: No context/window hotkey found, find global hotkey hotkey = self._registry.get_hotkey_for_trigger(key_combination) if hotkey: hotkey.execute() async def _run(self): while not self._stop_event.is_set(): (key_combination, pos_x, pos_y) = await self._work_queue.get() self.__trigger(key_combination, pos_x, pos_y)
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/extension.py
# pylint: disable=attribute-defined-outside-init __all__ = ["get_hotkey_context", "get_hotkey_registry", "HotkeysExtension"] import omni.ext import carb from .context import HotkeyContext from .registry import HotkeyRegistry from .trigger import HotkeyTrigger from .keyboard_layout import USKeyboardLayout, GermanKeyboardLayout, FrenchKeyboardLayout _hotkey_context = None _hotkey_registry = None # public API def get_hotkey_context() -> HotkeyContext: """ Get the hotkey context. Return: HotkeyContext object which implements the hotkey context interface. """ return _hotkey_context def get_hotkey_registry() -> HotkeyRegistry: """ Get the hotkey registry. Return: HotkeyRegistry object which implements the hotkey registry interface. """ return _hotkey_registry class HotkeysExtension(omni.ext.IExt): """ Hotkeys extension. """ def on_startup(self, ext_id): """ Extension startup entrypoint. """ self._us_keyboard_layout = USKeyboardLayout() self._german_keyboard_layput = GermanKeyboardLayout() self._french_keyboard_layout = FrenchKeyboardLayout() global _hotkey_context, _hotkey_registry _hotkey_context = HotkeyContext() _hotkey_registry = HotkeyRegistry() self._hotkey_trigger = None _settings = carb.settings.get_settings() enabled = _settings.get("/exts/omni.kit.hotkeys.core/hotkeys_enabled") if enabled: self._hotkey_trigger = HotkeyTrigger(_hotkey_registry, _hotkey_context) else: carb.log_info("All Hotkeys disabled via carb setting /exts/omni.kit.hotkeys.core/hotkeys_enabled=false") def on_shutdown(self): if self._hotkey_trigger: self._hotkey_trigger.destroy() self._us_keyboard_layout = None self._german_keyboard_layput = None self._french_keyboard_layout = None global _hotkey_context, _hotkey_registry _hotkey_context = None _hotkey_registry = None
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/__init__.py
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # """ Omni Kit Hotkeys Core --------------------- Omni Kit Hotkeys Core is a framework for creating, registering, and discovering hotkeys. Here is an example of registering an hokey from Python that execute action "omni.kit.window.file::new" to create a new file when CTRL + N pressed: .. code-block:: hotkey_registry = omni.kit.hotkeys.core.get_hotkey_registry() hotkey_registry.register_hotkey( "your_extension_id", "CTRL + N", "omni.kit.window.file", "new", filter=None, ) For more examples, please consult the Usage Examples page. """ from .key_combination import KeyCombination from .hotkey import Hotkey from .registry import HotkeyRegistry from .filter import HotkeyFilter from .extension import HotkeysExtension, get_hotkey_context, get_hotkey_registry from .event import HOTKEY_REGISTER_EVENT, HOTKEY_DEREGISTER_EVENT, HOTKEY_CHANGED_EVENT from .keyboard_layout import KeyboardLayoutDelegate __all__ = [ "KeyCombination", "Hotkey", "HotkeyRegistry", "HotkeyFilter", "HotkeysExtension", "get_hotkey_context", "get_hotkey_registry", "HOTKEY_REGISTER_EVENT", "HOTKEY_DEREGISTER_EVENT", "HOTKEY_CHANGED_EVENT", ]
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/storage.py
__all__ = ["HotkeyDescription", "HotkeyStorage"] import json from dataclasses import dataclass, asdict from typing import List, Optional, Dict, Tuple import carb.settings from .hotkey import Hotkey from .filter import HotkeyFilter from .key_combination import KeyCombination # Hotkey ext id for all hotkeys created from here USER_HOTKEY_EXT_ID = "omni.kit.hotkeys.window" SETTING_USER_HOTKEYS = "/persistent/omni.kit.hotkeys.core/userHotkeys" @dataclass class HotkeyDescription: hotkey_ext_id: str = "" action_ext_id: str = "" action_id: str = "" key: str = "" trigger_press: bool = True context: str = None windows: str = None @staticmethod def from_hotkey(hotkey: Hotkey): (context, windows) = HotkeyDescription.get_filter_string(hotkey) return HotkeyDescription( hotkey_ext_id=hotkey.hotkey_ext_id, action_ext_id=hotkey.action_ext_id, action_id=hotkey.action_id, key=hotkey.key_combination.as_string, trigger_press=hotkey.key_combination.trigger_press, context=context, windows=windows, ) @property def id(self) -> str: # noqa: A003 return self.to_hotkey().id def to_hotkey(self) -> Hotkey: if self.context or self.windows: hotkey_filter = HotkeyFilter(context=self.context if self.context else None, windows=self.windows.split(",") if self.windows else None) else: hotkey_filter = None key = KeyCombination(self.key, trigger_press=self.trigger_press) return Hotkey(self.hotkey_ext_id, key, self.action_ext_id, self.action_id, filter=hotkey_filter) def update(self, hotkey: Hotkey) -> None: self.key = hotkey.key_combination.as_string self.trigger_press = hotkey.key_combination.trigger_press (self.context, self.windows) = HotkeyDescription.get_filter_string(hotkey) @staticmethod def get_filter_string(hotkey: Hotkey) -> Tuple[str, str]: return ( hotkey.filter.context if hotkey.filter and hotkey.filter else "", ",".join(hotkey.filter.windows) if hotkey.filter and hotkey.filter.windows else "" ) class HotkeyStorage: def __init__(self): self.__settings = carb.settings.get_settings() self.__hotkey_descs: List[HotkeyDescription] = [HotkeyDescription(**desc) for desc in self.__settings.get(SETTING_USER_HOTKEYS) or []] carb.log_info(f"[Hotkey] {len(self.__hotkey_descs)} user defined hotkeys") def get_hotkey(self, hotkey: Hotkey) -> Optional[Hotkey]: """ Get hotkey definition in storage. """ hotkey_desc = self.__find_hotkey_desc(hotkey) return hotkey_desc.to_hotkey() if hotkey_desc else None def get_user_hotkeys(self) -> List[Hotkey]: """ Get all user-defined hotkeys. """ user_hotkeys: List[Hotkey] = [] for hotkey_desc in self.__hotkey_descs: hotkey = hotkey_desc.to_hotkey() if self.is_user_hotkey(hotkey): user_hotkeys.append(hotkey) return user_hotkeys def get_hotkeys(self) -> List[Hotkey]: """ Discover all hotkey definitions in this storage. """ return [desc.to_hotkey() for desc in self.__hotkey_descs] def register_user_hotkey(self, hotkey: Hotkey): """ Register user hotkey. """ if self.is_user_hotkey(hotkey): # This is user defined hotkey hotkey_desc = HotkeyDescription().from_hotkey(hotkey) self.__hotkey_descs.append(hotkey_desc) self.__settings.set(SETTING_USER_HOTKEYS, [asdict(desc) for desc in self.__hotkey_descs]) def edit_hotkey(self, hotkey: Hotkey): """ Edit hotkey. This could be a user-defined hotkey or system hotkey but changed by user. """ # This is system hotkey but user changed key bindings, etc. hotkey_desc = self.__find_hotkey_desc(hotkey) if hotkey_desc: hotkey_desc.update(hotkey) else: hotkey_desc = HotkeyDescription().from_hotkey(hotkey) self.__hotkey_descs.append(hotkey_desc) self.__settings.set(SETTING_USER_HOTKEYS, [asdict(desc) for desc in self.__hotkey_descs]) def deregister_hotkey(self, hotkey: Hotkey): """ Deregister user hotkey from storage. For system hotkey, keep in storage to reload when register again """ if self.is_user_hotkey(hotkey): hotkey_desc = HotkeyDescription().from_hotkey(hotkey) if hotkey_desc in self.__hotkey_descs: self.__hotkey_descs.remove(hotkey_desc) self.__settings.set(SETTING_USER_HOTKEYS, [asdict(desc) for desc in self.__hotkey_descs]) def __find_hotkey_desc(self, hotkey: Hotkey) -> Optional[HotkeyDescription]: """ Find if there is user-defined hotkey """ for hotkey_desc in self.__hotkey_descs: if hotkey_desc.id == hotkey.id: return hotkey_desc return None def clear_hotkeys(self) -> None: """ Clear all hotkeys in storage """ self.__hotkey_descs = [] self.__settings.set(SETTING_USER_HOTKEYS, []) def is_user_hotkey(self, hotkey: Hotkey) -> bool: """ If a user-defined hotkey """ return hotkey.hotkey_ext_id == USER_HOTKEY_EXT_ID def save_preset(self, url: str) -> bool: """ Save storage to file. """ output = { "Type": "Hotkey Preset", "Keys": [asdict(desc) for desc in self.__hotkey_descs] } try: with open(url, "w", encoding="utf8") as json_file: json.dump(output, json_file, indent=4) json_file.close() carb.log_info(f"Saved hotkeys preset to {url}!") except FileNotFoundError: carb.log_warn(f"Failed to open {url}!") return False except PermissionError: carb.log_warn(f"Cannot write to {url}: permission denied!") return False except Exception as e: # pylint: disable=broad-except carb.log_warn(f"Unknown failure to write to {url}: {e}") return False finally: if json_file: json_file.close() return bool(json_file) def load_preset(self, preset: List[Dict]) -> None: """ Load hotkey preset. """ self.clear_hotkeys() self.__hotkey_descs = [HotkeyDescription(**desc) for desc in preset] self.__settings.set(SETTING_USER_HOTKEYS, [asdict(desc) for desc in self.__hotkey_descs]) def preload_preset(self, url: str) -> Optional[Dict]: """ Preload hotkey preset from file. """ keys_json = None try: with open(url, "r", encoding="utf8") as json_file: keys_json = json.load(json_file) except FileNotFoundError: carb.log_error(f"Failed to open {url}!") except PermissionError: carb.log_error(f"Cannot read {url}: permission denied!") except Exception as exc: # pylint: disable=broad-except carb.log_error(f"Unknown failure to read {url}: {exc}") if keys_json is None: return None if keys_json.get("Type", None) != "Hotkey Preset": carb.log_error(f"{url} is not a valid hotkey preset file!") return None if "Keys" not in keys_json: carb.log_error(f"{url} is not a valid hotkey preset: No key found!") return None return keys_json["Keys"]
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/keyboard_layout.py
import abc from typing import Dict, List, Optional import weakref import carb.input from .key_combination import KeyCombination class KeyboardLayoutDelegate(abc.ABC): """Base class for keyboard layout delegates and registry of these same delegate instances. Whenever an instance of this class is created, it is automatically registered. """ __g_registered = [] @classmethod def get_instances(cls) -> List["KeyboardLayoutDelegate"]: remove = [] for wref in KeyboardLayoutDelegate.__g_registered: obj = wref() if obj: yield obj else: remove.append(wref) for wref in remove: KeyboardLayoutDelegate.__g_registered.remove(wref) @classmethod def get_instance(cls, name: str) -> Optional["KeyboardLayoutDelegate"]: for inst in KeyboardLayoutDelegate.get_instances(): if inst.get_name() == name: return inst return None def __init__(self): self.__g_registered.append(weakref.ref(self, lambda r: KeyboardLayoutDelegate.__g_registered.remove(r))) # noqa: PLW0108 # pylint: disable=unnecessary-lambda self._maps = self.get_maps() self._restore_maps = {value: key for (key, value) in self._maps.items()} def __del__(self): self.destroy() def destroy(self): for wref in KeyboardLayoutDelegate.__g_registered: if wref() == self: KeyboardLayoutDelegate.__g_registered.remove(wref) break @abc.abstractmethod def get_name(self) -> str: return "" @abc.abstractmethod def get_maps(self) -> dict: return {} def map_key(self, key: KeyCombination) -> Optional[KeyCombination]: return KeyCombination(self._maps[key.key], modifiers=key.modifiers, trigger_press=key.trigger_press) if key.key in self._maps else None def restore_key(self, key: KeyCombination) -> Optional[KeyCombination]: return KeyCombination(self._restore_maps[key.key], modifiers=key.modifiers, trigger_press=key.trigger_press) if key.key in self._restore_maps else None class USKeyboardLayout(KeyboardLayoutDelegate): def get_name(self) -> str: return "U.S. QWERTY" def get_maps(self) -> Dict[carb.input.KeyboardInput, carb.input.KeyboardInput]: return {} class GermanKeyboardLayout(KeyboardLayoutDelegate): def get_name(self) -> str: return "German QWERTZ" def get_maps(self) -> Dict[carb.input.KeyboardInput, carb.input.KeyboardInput]: return { carb.input.KeyboardInput.Z: carb.input.KeyboardInput.Y, carb.input.KeyboardInput.Y: carb.input.KeyboardInput.Z, } class FrenchKeyboardLayout(KeyboardLayoutDelegate): def get_name(self) -> str: return "French AZERTY" def get_maps(self) -> Dict[carb.input.KeyboardInput, carb.input.KeyboardInput]: return { carb.input.KeyboardInput.Q: carb.input.KeyboardInput.A, carb.input.KeyboardInput.W: carb.input.KeyboardInput.Z, carb.input.KeyboardInput.A: carb.input.KeyboardInput.Q, carb.input.KeyboardInput.Z: carb.input.KeyboardInput.W, }
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/filter.py
__all__ = ["HotkeyFilter"] from typing import List, Optional class HotkeyFilter: """ Hotkey filter class. """ def __init__(self, context: Optional[str] = None, windows: Optional[List[str]] = None): """ Define a hotkey filter object. Keyword Args: context (Optional[str]): Name of context to filter. Default None. windows (Optional[List[str]]): List of window names to filter. Default None Returns: The hotkey filter object that was created. """ self.context = context self.windows = windows @property def windows_text(self): """ String of windows defined in this filter. """ return ",".join(self.windows) if self.windows else "" def __eq__(self, other): return isinstance(other, HotkeyFilter) and self.context == other.context and self.windows == other.windows def __str__(self): info = "" if self.context: info += f"[Context] {self.context}" if self.windows: info += "[Windows] " + (",".join(self.windows)) return info
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/hotkey.py
from typing import Optional, Union import carb from omni.kit.actions.core import get_action_registry, Action from .key_combination import KeyCombination from .filter import HotkeyFilter class Hotkey: """ Hotkey object class. """ def __init__( self, hotkey_ext_id: str, key: Union[str, KeyCombination], action_ext_id: str, action_id: str, filter: Optional[HotkeyFilter] = None # noqa: A002 # pylint: disable=redefined-builtin ): """ Define a hotkey object. Args: hotkey_ext_id (str): Extension id which owns the hotkey. key (Union[str, KeyCombination]): Key combination. action_ext_id (str): Extension id which owns the action assigned to the hotkey. action_id (str): Action id assigned to the hotkey. Keyword Args: filter (Optional[HotkeyFilter]): Hotkey filter. Default None Returns: The hotkey object that was created. """ self.hotkey_ext_id = hotkey_ext_id if key: self.key_combination = KeyCombination(key) if isinstance(key, str) else key else: self.key_combination = None # For user defined action, the extension may not loaded yet # So only save action id instead get real action here self.action_ext_id = action_ext_id self.action_id = action_id self.filter = filter @property def id(self) -> str: # noqa: A003 """ Identifier string of this hotkey. """ hotkey_id = f"{self.hotkey_ext_id}.{self.action_text}" if self.filter: hotkey_id += "." + str(self.filter) return hotkey_id @property def key_text(self) -> str: """ String of key bindings assigned to this hotkey. """ return self.key_combination.as_string if self.key_combination else "" @property def action_text(self) -> str: """ String of action object assigned to this hotkey. """ return self.action_ext_id + "::" + self.action_id if self.action_ext_id or self.action_id else "" @property def filter_text(self) -> str: """ String of filter object assigned to this hotkey. """ return str(self.filter) if self.filter else "" @property def action(self) -> Action: """ Action object assigned to this hotkey. """ if self.action_ext_id and self.action_id: action = get_action_registry().get_action(self.action_ext_id, self.action_id) if action is None: carb.log_warn(f"[Hotkey] Action '{self.action_ext_id}::{self.action_id}' not FOUND!") return action return None def execute(self) -> None: """ Execute action assigned to the hotkey """ if self.action: self.action.execute() def __eq__(self, other) -> bool: return isinstance(other, Hotkey)\ and self.hotkey_ext_id == other.hotkey_ext_id \ and self.key_combination == other.key_combination \ and self.action_ext_id == other.action_ext_id \ and self.action_id == other.action_id \ and self.filter == other.filter def __repr__(self): basic_info = f"[{self.hotkey_ext_id}] {self.action_text}.{self.key_text}" if self.filter is None: return f"Global {basic_info}" return f"Local {basic_info} for {self.filter}"
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/context.py
__all__ = ["HotkeyContext"] from typing import List, Optional import carb.settings SETTING_HOTKEY_CURRENT_CONTEXT = "/exts/omni.kit.hotkeys.core/context" class HotkeyContext: def __init__(self): """Represent hotkey context.""" self._queue: List[str] = [] self._settings = carb.settings.get_settings() def push(self, name: str) -> None: """ Push a context. Args: name (str): name of context """ self._queue.append(name) self._update_settings() def pop(self) -> Optional[str]: """Remove and return last context.""" poped = self._queue.pop() if self._queue else None self._update_settings() return poped def get(self) -> Optional[str]: """Get last context.""" return self._queue[-1] if self._queue else None def clean(self) -> None: """Clean all contexts""" self._queue.clear() self._update_settings() def _update_settings(self): current = self.get() self._settings.set(SETTING_HOTKEY_CURRENT_CONTEXT, current if current else "")
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/key_combination.py
__all__ = ["KeyCombination"] from typing import Union, Optional, Dict, Tuple import re import carb import carb.input PREDEFINED_STRING_TO_KEYS: Dict[str, carb.input.Keyboard] = carb.input.KeyboardInput.__members__ class KeyCombination: """ Key binding class. """ def __init__(self, key: Union[str, carb.input.KeyboardInput], modifiers: int = 0, trigger_press: bool = True): """ Create a key binding object. Args: key (Union[str, carb.input.KeyboardInput]): could be string or carb.input.KeyboardInput. if string, use "+" to join carb.input.KeyboardInput and modifiers, for example: "CTRL+D" or "CTRL+SHIFT+D" Keyword Args: modifiers (int): Represent combination of keyboard modifier flags, which could be: carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT carb.input.KEYBOARD_MODIFIER_FLAG_ALT carb.input.KEYBOARD_MODIFIER_FLAG_SUPER trigger_press (bool): Trigger when key pressed if True. Otherwise trigger when key released. Default True. """ self.key: Optional[carb.input.Keyboard] = None self.modifiers = 0 if isinstance(key, str): (self.key, self.modifiers, self.trigger_press) = KeyCombination.from_string(key) else: self.modifiers = modifiers if key in [ carb.input.KeyboardInput.LEFT_CONTROL, carb.input.KeyboardInput.RIGHT_CONTROL, carb.input.KeyboardInput.LEFT_SHIFT, carb.input.KeyboardInput.RIGHT_SHIFT, carb.input.KeyboardInput.LEFT_ALT, carb.input.KeyboardInput.RIGHT_ALT, carb.input.KeyboardInput.LEFT_SUPER, carb.input.KeyboardInput.RIGHT_SUPER, ]: self.key = "" else: self.key = key self.trigger_press = trigger_press @property def as_string(self) -> str: """ Get string to describe key combination """ if self.key is None: return "" descs = [] if self.modifiers & carb.input.KEYBOARD_MODIFIER_FLAG_SUPER: descs.append("SUPER") if self.modifiers & carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT: descs.append("SHIFT") if self.modifiers & carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL: descs.append("CTRL") if self.modifiers & carb.input.KEYBOARD_MODIFIER_FLAG_ALT: descs.append("ALT") if self.key in PREDEFINED_STRING_TO_KEYS.values(): key = list(PREDEFINED_STRING_TO_KEYS.keys())[list(PREDEFINED_STRING_TO_KEYS.values()).index(self.key)] # OM-67426: Remove "KEY_". For example, "KEY_1" to "1". if key.startswith("KEY_"): key = key[4:] descs.append(key) return " + ".join(descs) @property def id(self) -> str: # noqa: A003 """ Identifier string of this key binding object. """ return f"{self.as_string} (On " + ("Press" if self.trigger_press else "Release") + ")" @property def is_valid(self) -> bool: """ If a valid key binding object. """ return self.key is not None def __repr__(self) -> str: return self.id def __eq__(self, other) -> bool: return isinstance(other, KeyCombination) and self.id == other.id def __hash__(self): return hash(self.id) @staticmethod def from_string(key_string: str) -> Tuple[carb.input.KeyboardInput, int, bool]: """ Get key binding information from a string. Args: key_string (str): String represent a key binding. Returns: Tuple of carb.input.KeyboardInput, modifiers and flag for press/release. """ if key_string is None: carb.log_error("No key defined!") return (None, None, None) key_string = key_string.strip() if key_string == "": # Empty key string means no key return ("", 0, True) modifiers = 0 key = None trigger_press = True m = re.search(r"(.*)\(on (press|release)\)", key_string, flags=re.IGNORECASE) if m: trigger = m.groups()[1] trigger_press = trigger.upper() == "PRESS" key_string = m.groups()[0] else: trigger_press = True key_descs = key_string.split("+") for desc in key_descs: desc = desc.strip().upper() if desc in ["CTRL", "CTL", "CONTROL"]: modifiers += carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL elif desc in ["SHIFT"]: modifiers += carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT elif desc in ["ALT"]: modifiers += carb.input.KEYBOARD_MODIFIER_FLAG_ALT elif desc in ["SUPER"]: modifiers += carb.input.KEYBOARD_MODIFIER_FLAG_SUPER elif desc in ["PRESS", "RELEASE"]: trigger_press = desc == "PRESS" elif desc in PREDEFINED_STRING_TO_KEYS: key = PREDEFINED_STRING_TO_KEYS[desc] elif desc in [str(i) for i in range(0, 10)]: # OM-67426: for numbers, convert to original key definition key = PREDEFINED_STRING_TO_KEYS["KEY_" + desc] elif desc == "": key = "" else: carb.log_warn(f"Unknown key definition '{desc}' in '{key_string}'") return (None, None, None) return (key, modifiers, trigger_press) @staticmethod def is_valid_key_string(key: str) -> bool: """ If key string valid. Args: key (str): Key string to check. Returns: True if key string is valid. Otherwise False. """ (key, modifiers, press) = KeyCombination.from_string(key) if key is None or modifiers is None or press is None: return False return True
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/hovered_window.py
__all__ = ["is_window_hovered", "get_hovered_window"] from typing import Optional, List import omni.ui as ui def is_window_hovered(pos_x: float, pos_y: float, window: ui.Window) -> bool: """ Check if window under mouse position. Args: pos_x (flaot): X position. pos_y (flaot): Y position. window (ui.Window): Window to check. """ # if window hasn't been drawn yet docked may not be valid, so check dock_id also # OM-65505: For ui.ToolBar, is_selected_in_dock always return False if docked. if not window or not window.visible or ((window.docked or window.dock_id != 0) and (not isinstance(window, ui.ToolBar) and not window.is_selected_in_dock())): return False if (window.position_x + window.width > pos_x > window.position_x and window.position_y + window.height > pos_y > window.position_y): return True return False def get_hovered_window(pos_x: float, pos_y: float) -> Optional[str]: """ Get first window under mouse. Args: pos_x (flaot): X position. pos_y (flaot): Y position. Return None if nothing found. If muliple window found, float window first. If multiple float window, just first result """ hovered_float_windows: List[ui.Window] = [] hovered_doced_windows: List[ui.Window] = [] dpi = ui.Workspace.get_dpi_scale() pos_x /= dpi pos_y /= dpi windows = ui.Workspace.get_windows() for window in windows: if is_window_hovered(pos_x, pos_y, window): if window.docked: hovered_doced_windows.append(window) else: hovered_float_windows.append(window) if hovered_float_windows: return hovered_float_windows[0] if hovered_doced_windows: return hovered_doced_windows[0] return None
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/test_registry.py
# pylint: disable=attribute-defined-outside-init import omni.kit.test import carb.events from omni.kit.hotkeys.core import get_hotkey_registry, HotkeyFilter, Hotkey, HotkeyRegistry, HOTKEY_CHANGED_EVENT, HOTKEY_REGISTER_EVENT, HOTKEY_DEREGISTER_EVENT from omni.kit.actions.core import get_action_registry TEST_HOTKEY_EXT_ID = "omni.kit.hotkey.test.hotkey" TEST_ACTION_EXT_ID = "omni.kit.hotkey.test.action" TEST_ACTION_ID = "hotkey_test_action" TEST_ANOTHER_ACTION_ID = "hotkey_test_action_another" TEST_CONTEXT_NAME = "[email protected]" TEST_HOTKEY = "CTRL + T" TEST_ANOTHER_HOTKEY = "SHIFT + T" TEST_EDIT_HOTKEY = "T" CHANGE_HOTKEY = "SHIFT + CTRL + T" class TestRegistry(omni.kit.test.AsyncTestCase): async def setUp(self): self._hotkey_registry = get_hotkey_registry() self._hotkey_registry.clear_storage() self._action_registry = get_action_registry() self._filter = HotkeyFilter(context=TEST_CONTEXT_NAME) self._register_payload = {} self._action = self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_ACTION_ID, lambda: print("this is a hotkey test")) self._another_action = self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID, lambda: print("this is another hotkey test")) # After running each test async def tearDown(self): self._hotkey_registry.deregister_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID) self._hotkey_registry.clear_storage() self._hotkey_registry = None self._action_registry.deregister_action(self._action) self._action_registry = None async def test_register_global_hotkey(self): hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertIsNone(hotkey) # Register a global hotkey self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertEqual(hotkey.hotkey_ext_id, TEST_HOTKEY_EXT_ID) self.assertEqual(hotkey.action, self._action) self.assertEqual(hotkey.key_combination.as_string, TEST_HOTKEY) # Deregister the global hotkey self._hotkey_registry.deregister_hotkey(hotkey) hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertIsNone(hotkey) async def test_register_local_hotkey(self): global_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertIsNone(global_hotkey) local_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, filter=self._filter) self.assertIsNone(local_hotkey) # Register a local hotkey self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID, filter=self._filter) global_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertIsNone(global_hotkey) local_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, filter=self._filter) self.assertEqual(local_hotkey.hotkey_ext_id, TEST_HOTKEY_EXT_ID) self.assertEqual(local_hotkey.action, self._action) self.assertEqual(local_hotkey.key_combination.as_string, TEST_HOTKEY) # Deregister the local hotkey self._hotkey_registry.deregister_hotkey(local_hotkey) hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, filter=self._filter) self.assertIsNone(hotkey) async def test_mixed_hotkey(self): # Register a global hotkey global_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) # Register a local hotkey local_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID, filter=self._filter) self.assertNotEqual(global_hotkey, local_hotkey) discovered_global_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertEqual(global_hotkey, discovered_global_hotkey) discovered_local_hotkey = self._hotkey_registry.get_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, filter=self._filter) self.assertEqual(local_hotkey, discovered_local_hotkey) # Deregister the hotkeys self._hotkey_registry.deregister_hotkey(global_hotkey) self._hotkey_registry.deregister_hotkey(local_hotkey) async def test_deregister(self): # Register a global hotkey hotkey_1 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) self.assertIsNotNone(hotkey_1) # Register a local hotkey hotkey_2 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID, filter=self._filter) self.assertIsNotNone(hotkey_2) # Register with another key, should since already action already defined hotkey_3 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, "SHIFT+D", TEST_ACTION_EXT_ID, TEST_ACTION_ID) self.assertIsNone(hotkey_3) # Register with another extension id hotkey_4 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID + "_another", TEST_ANOTHER_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID, filter=self._filter) self.assertIsNotNone(hotkey_4) hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID + "_another") self.assertEqual(len(hotkeys), 1) # Deregister hotkey_4 self._hotkey_registry.deregister_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID + "_another") hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID + "_another") self.assertEqual(len(hotkeys), 0) # Deregister hotkey_1 hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(None) self.assertEqual(len(hotkeys), 1) self._hotkey_registry.deregister_all_hotkeys_for_extension(None) hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(None) self.assertEqual(len(hotkeys), 0) # Deregister hotkey_2 hotkeys = self._hotkey_registry.get_all_hotkeys_for_filter(self._filter) self.assertEqual(len(hotkeys), 1) self._hotkey_registry.deregister_all_hotkeys_for_filter(self._filter) hotkeys = self._hotkey_registry.get_all_hotkeys_for_filter(self._filter) self.assertEqual(len(hotkeys), 0) async def test_discover_hotkeys(self): hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID) self.assertEqual(len(hotkeys), 0) hotkeys = self._hotkey_registry.get_all_hotkeys_for_key(TEST_HOTKEY) self.assertEqual(len(hotkeys), 0) hotkeys = self._hotkey_registry.get_hotkeys(TEST_ACTION_EXT_ID, TEST_HOTKEY) self.assertEqual(len(hotkeys), 0) # Register a global hotkey global_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) self.assertIsNotNone(global_hotkey) # Register a local hotkey local_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID, filter=self._filter) self.assertIsNotNone(local_hotkey) # Register with another key hotkey_1 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, "SHIFT+D", TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID) self.assertIsNotNone(hotkey_1) # Register with another extension id (should be failed since key + filter is same) hotkey_2 = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID + "_another", TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID, filter=self._filter) self.assertIsNone(hotkey_2) hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID) self.assertEqual(len(hotkeys), 3) hotkeys = self._hotkey_registry.get_all_hotkeys_for_extension(None) self.assertEqual(len(hotkeys), 2) hotkeys = self._hotkey_registry.get_all_hotkeys_for_key(TEST_HOTKEY) self.assertEqual(len(hotkeys), 2) hotkeys = self._hotkey_registry.get_hotkeys(TEST_HOTKEY_EXT_ID, TEST_HOTKEY) self.assertEqual(len(hotkeys), 2) self._hotkey_registry.deregister_hotkey(global_hotkey) self._hotkey_registry.deregister_hotkey(local_hotkey) self._hotkey_registry.deregister_hotkey(hotkey_1) self._hotkey_registry.deregister_hotkey(hotkey_2) async def test_event(self): event_stream = omni.kit.app.get_app().get_message_bus_event_stream() self._register_event_sub = event_stream.create_subscription_to_pop_by_type( HOTKEY_REGISTER_EVENT, self._on_hotkey_register) self._deregister_event_sub = event_stream.create_subscription_to_pop_by_type( HOTKEY_DEREGISTER_EVENT, self._on_hotkey_deregister) self._change_event_sub = event_stream.create_subscription_to_pop_by_type( HOTKEY_CHANGED_EVENT, self._on_hotkey_changed) # Register hotkey event test_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) for _ in range(2): await omni.kit.app.get_app().next_update_async() self.assertEqual(self._register_payload["hotkey_ext_id"], TEST_HOTKEY_EXT_ID) self.assertEqual(self._register_payload["key"], TEST_HOTKEY) self.assertEqual(self._register_payload["action_ext_id"], TEST_ACTION_EXT_ID) self.assertEqual(self._register_payload["action_id"], TEST_ACTION_ID) # Change hotkey error_code = self._hotkey_registry.edit_hotkey(test_hotkey, CHANGE_HOTKEY, None) self.assertEqual(error_code, HotkeyRegistry.Result.OK) for _ in range(2): await omni.kit.app.get_app().next_update_async() self.assertEqual(self._changed_payload["hotkey_ext_id"], TEST_HOTKEY_EXT_ID) self.assertEqual(self._changed_payload["key"], CHANGE_HOTKEY) self.assertEqual(self._changed_payload["action_ext_id"], TEST_ACTION_EXT_ID) self.assertEqual(self._changed_payload["action_id"], TEST_ACTION_ID) # Change hotkey back self._hotkey_registry.edit_hotkey(test_hotkey, TEST_HOTKEY, None) for _ in range(2): await omni.kit.app.get_app().next_update_async() self.assertEqual(self._changed_payload["key"], TEST_HOTKEY) # Deregister hotkey event self._hotkey_registry.deregister_hotkey(test_hotkey) for _ in range(2): await omni.kit.app.get_app().next_update_async() self.assertEqual(self._deregister_payload["hotkey_ext_id"], TEST_HOTKEY_EXT_ID) self.assertEqual(self._deregister_payload["key"], TEST_HOTKEY) self.assertEqual(self._deregister_payload["action_ext_id"], TEST_ACTION_EXT_ID) self.assertEqual(self._deregister_payload["action_id"], TEST_ACTION_ID) self._register_event_sub = None self._deregister_event_sub = None self._change_event_sub = None async def test_error_code_global(self): hotkey = Hotkey(TEST_HOTKEY_EXT_ID, "CBL", TEST_ACTION_EXT_ID, TEST_ACTION_ID) registered_hotkey = self._hotkey_registry.register_hotkey(hotkey) self.assertIsNone(registered_hotkey) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.ERROR_KEY_INVALID) registered_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, "T", "", "") self.assertIsNone(registered_hotkey) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.ERROR_NO_ACTION) registered_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID) self.assertIsNotNone(registered_hotkey) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.OK) registered_another = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID) self.assertIsNone(registered_another) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.ERROR_KEY_DUPLICATED) # Edit global hotkey registered_another = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_ANOTHER_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID) self.assertIsNotNone(registered_another) error_code = self._hotkey_registry.edit_hotkey(registered_another, "CBL", None) self.assertEqual(error_code, HotkeyRegistry.Result.ERROR_KEY_INVALID) error_code = self._hotkey_registry.edit_hotkey(registered_another, TEST_HOTKEY, None) self.assertEqual(error_code, HotkeyRegistry.Result.ERROR_KEY_DUPLICATED) duplicated = self._hotkey_registry.get_hotkey_for_filter(TEST_HOTKEY, None) self.assertEqual(duplicated.action_ext_id, TEST_ACTION_EXT_ID) self.assertEqual(duplicated.action_id, TEST_ACTION_ID) error_code = self._hotkey_registry.edit_hotkey(registered_another, TEST_EDIT_HOTKEY, None) self.assertEqual(error_code, HotkeyRegistry.Result.OK) error_code = self._hotkey_registry.edit_hotkey(registered_another, "", None) self.assertEqual(error_code, HotkeyRegistry.Result.OK) async def test_error_code_window(self): # Edit hotkey in window hotkey_filter = HotkeyFilter(windows=["Test Window"]) registered_hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ACTION_ID, filter=hotkey_filter) self.assertIsNotNone(registered_hotkey) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.OK) registered_another = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID, filter=hotkey_filter) self.assertIsNone(registered_another) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.ERROR_KEY_DUPLICATED) registered_another = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_ANOTHER_HOTKEY, TEST_ACTION_EXT_ID, TEST_ANOTHER_ACTION_ID, filter=hotkey_filter) self.assertEqual(self._hotkey_registry.last_error, HotkeyRegistry.Result.OK) self.assertIsNotNone(registered_another) error_code = self._hotkey_registry.edit_hotkey(registered_another, "CBL", hotkey_filter) self.assertEqual(error_code, HotkeyRegistry.Result.ERROR_KEY_INVALID) error_code = self._hotkey_registry.edit_hotkey(registered_another, TEST_HOTKEY, hotkey_filter) self.assertEqual(error_code, HotkeyRegistry.Result.ERROR_KEY_DUPLICATED) duplicated = self._hotkey_registry.get_hotkey_for_filter(TEST_HOTKEY, hotkey_filter) self.assertEqual(duplicated.action_ext_id, TEST_ACTION_EXT_ID) self.assertEqual(duplicated.action_id, TEST_ACTION_ID) error_code = self._hotkey_registry.edit_hotkey(registered_another, TEST_EDIT_HOTKEY, hotkey_filter) self.assertEqual(error_code, HotkeyRegistry.Result.OK) error_code = self._hotkey_registry.edit_hotkey(registered_another, "", hotkey_filter) self.assertEqual(error_code, HotkeyRegistry.Result.OK) def _on_hotkey_register(self, event: carb.events.IEvent): self._register_payload = event.payload def _on_hotkey_deregister(self, event: carb.events.IEvent): self._deregister_payload = event.payload def _on_hotkey_changed(self, event: carb.events.IEvent): self._changed_payload = event.payload
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/test_context.py
from typing import List import omni.kit.test # Import extension python module we are testing with absolute import path, as if we are external user (other extension) from omni.kit.hotkeys.core import get_hotkey_context import carb.settings SETTING_HOTKEY_CURRENT_CONTEXT = "/exts/omni.kit.hotkeys.core/context" # Having a test class dervived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestContext(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): self._settings = carb.settings.get_settings() # After running each test async def tearDown(self): pass async def test_empty(self): context = get_hotkey_context() self.assertEqual(self._settings.get(SETTING_HOTKEY_CURRENT_CONTEXT), "") self.assertIsNone(context.get()) self.assertIsNone(context.pop()) async def test_push_pop(self): max_contexts = 10 context_names: List[str] = [f"context_{i}" for i in range(max_contexts)] context = get_hotkey_context() for name in context_names: context.push(name) self.assertEqual(self._settings.get(SETTING_HOTKEY_CURRENT_CONTEXT), name) self.assertEqual(context.get(), name) for i in range(max_contexts): self.assertEqual(context.pop(), context_names[-(i + 1)]) if i == max_contexts - 1: current = None else: current = context_names[-(i + 2)] self.assertEqual(context.get(), current) self.assertEqual(self._settings.get(SETTING_HOTKEY_CURRENT_CONTEXT), current if current else "") self.assertIsNone(context.pop()) async def test_clean(self): max_contexts = 10 context_names: List[str] = [f"context_{i}" for i in range(max_contexts)] context = get_hotkey_context() for name in context_names: context.push(name) context.clean() self.assertEqual(self._settings.get(SETTING_HOTKEY_CURRENT_CONTEXT), "") self.assertIsNone(context.get()) self.assertIsNone(context.pop())
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/__init__.py
from .test_key_combination import * from .test_context import * from .test_registry import * from .test_trigger import * from .test_keyboard_layout import *
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/test_keyboard_layout.py
import omni.kit.test import omni.kit.ui_test as ui_test import carb.input from omni.kit.hotkeys.core import get_hotkey_context, get_hotkey_registry, HotkeyFilter from omni.kit.actions.core import get_action_registry TEST_HOTKEY_EXT_ID = "omni.kit.hotkey.test.hotkey" TEST_ACTION_EXT_ID = "omni.kit.hotkey.test.action" TEST_CONTEXT_PRESS_ACTION_ID = "hotkey_test_context_press_action" TEST_CONTEXT_RELEASE_ACTION_ID = "hotkey_test_context_release_action" TEST_GLOBAL_PRESS_ACTION_ID = "hotkey_test_global_press_action" TEST_GLOBAL_RELEASE_ACTION_ID = "hotkey_test_global_release_action" TEST_CONTEXT_NAME = "[email protected]" TEST_HOTKEY = "CTRL+Z" _global_press_action_count = 0 def global_press_action_func(): global _global_press_action_count _global_press_action_count += 1 class TestKeyboardLayout(omni.kit.test.AsyncTestCase): async def setUp(self): self._hotkey_registry = get_hotkey_registry() self._hotkey_context = get_hotkey_context() self._action_registry = get_action_registry() self._filter = HotkeyFilter(context=TEST_CONTEXT_NAME) self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID, global_press_action_func) self._hotkey_registry.clear_storage() await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.Z, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() # After running each test async def tearDown(self): self._hotkey_context = None self._hotkey_registry.deregister_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID) self._hotkey_registry = None self._action_registry.deregister_all_actions_for_extension(TEST_ACTION_EXT_ID) self._action_registry = None async def test_hotkey_register_with_new_layout(self): self._hotkey_registry.switch_layout("German QWERTZ") # With new keyboard layout, key combination should be changed when register hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID) self.assertIsNotNone(hotkey) self.assertEqual(hotkey.key_combination.as_string, "CTRL + Y") await self.__verify_trigger(carb.input.KeyboardInput.Z, False) await self.__verify_trigger(carb.input.KeyboardInput.Y, True) async def test_hotkey_switch_layout(self): self._hotkey_registry.switch_layout("U.S. QWERTY") # Global pressed hotkey hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID) self.assertIsNotNone(hotkey) # Trigger hotkey in global, default layout, should trigger await self.__verify_trigger(carb.input.KeyboardInput.Z, True) # Switch layout self._hotkey_registry.switch_layout("German QWERTZ") self.assertEqual(hotkey.key_combination.as_string, "CTRL + Y") # Default key, nothing triggered await self.__verify_trigger(carb.input.KeyboardInput.Z, False) # Trigger with new key mapping await self.__verify_trigger(carb.input.KeyboardInput.Y, True) # Switch layout back to default self._hotkey_registry.switch_layout("U.S. QWERTY") self.assertEqual(hotkey.key_combination.as_string, "CTRL + Z") # New key, nothing triggered await self.__verify_trigger(carb.input.KeyboardInput.Y, False) # Trigger with default key mapping await self.__verify_trigger(carb.input.KeyboardInput.Z, True) async def test_user_hotkey(self): self._hotkey_registry.switch_layout("U.S. QWERTY") hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, "CTRL + M", TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID) self.assertIsNotNone(hotkey) self._hotkey_registry.edit_hotkey(hotkey, "CTRL + Z", None) self.assertEqual(hotkey.key_combination.as_string, "CTRL + Z") self._hotkey_registry.switch_layout("German QWERTZ") self.assertEqual(hotkey.key_combination.as_string, "CTRL + Z") async def __verify_trigger(self, key, should_trigger): saved_count = _global_press_action_count await ui_test.emulate_keyboard_press(key, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() if should_trigger: self.assertEqual(_global_press_action_count, saved_count + 1) else: self.assertEqual(_global_press_action_count, saved_count)
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/test_trigger.py
import omni.kit.test import omni.kit.ui_test as ui_test import carb.input from omni.kit.hotkeys.core import get_hotkey_context, get_hotkey_registry, HotkeyFilter, KeyCombination from omni.kit.actions.core import get_action_registry SETTING_ALLOW_LIST = "/exts/omni.kit.hotkeys.core/allow_list" TEST_HOTKEY_EXT_ID = "omni.kit.hotkey.test.hotkey" TEST_ACTION_EXT_ID = "omni.kit.hotkey.test.action" TEST_CONTEXT_PRESS_ACTION_ID = "hotkey_test_context_press_action" TEST_CONTEXT_RELEASE_ACTION_ID = "hotkey_test_context_release_action" TEST_GLOBAL_PRESS_ACTION_ID = "hotkey_test_global_press_action" TEST_GLOBAL_RELEASE_ACTION_ID = "hotkey_test_global_release_action" TEST_CONTEXT_NAME = "[email protected]" TEST_HOTKEY = "CTRL+T" _context_press_action_count = 0 _context_release_action_count = 0 _global_press_action_count = 0 _global_release_action_count = 0 def context_press_action_func(): global _context_press_action_count _context_press_action_count += 1 def context_release_action_func(): global _context_release_action_count _context_release_action_count += 1 def global_press_action_func(): global _global_press_action_count _global_press_action_count += 1 def global_release_action_func(): global _global_release_action_count _global_release_action_count += 1 class TestTrigger(omni.kit.test.AsyncTestCase): async def setUp(self): self._hotkey_registry = get_hotkey_registry() self._hotkey_context = get_hotkey_context() self._action_registry = get_action_registry() self._filter = HotkeyFilter(context=TEST_CONTEXT_NAME) await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_context_press_action_count, 0) self.assertEqual(_context_release_action_count, 0) self.assertEqual(_global_press_action_count, 0) self.assertEqual(_global_release_action_count, 0) # Hotkey with context self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_CONTEXT_PRESS_ACTION_ID, context_press_action_func) hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_CONTEXT_PRESS_ACTION_ID, filter=self._filter) self.assertIsNotNone(hotkey) # Hotkey with context with key released self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_CONTEXT_RELEASE_ACTION_ID, context_release_action_func) hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, KeyCombination(TEST_HOTKEY, trigger_press=False), TEST_ACTION_EXT_ID, TEST_CONTEXT_RELEASE_ACTION_ID, filter=self._filter) self.assertIsNotNone(hotkey) # Global pressed hotkey self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID, global_press_action_func) hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, TEST_HOTKEY, TEST_ACTION_EXT_ID, TEST_GLOBAL_PRESS_ACTION_ID) self.assertIsNotNone(hotkey) # Global released hotkey self._action_registry.register_action(TEST_ACTION_EXT_ID, TEST_GLOBAL_RELEASE_ACTION_ID, global_release_action_func) hotkey = self._hotkey_registry.register_hotkey(TEST_HOTKEY_EXT_ID, KeyCombination(TEST_HOTKEY, trigger_press=False), TEST_ACTION_EXT_ID, TEST_GLOBAL_RELEASE_ACTION_ID) self.assertIsNotNone(hotkey) # After running each test async def tearDown(self): self._hotkey_context = None self._hotkey_registry.deregister_all_hotkeys_for_extension(TEST_HOTKEY_EXT_ID) self._hotkey_registry = None self._action_registry.deregister_all_actions_for_extension(TEST_ACTION_EXT_ID) self._action_registry = None async def test_hotkey_in_context(self): # Trigger hotkey in context self._hotkey_context.push(TEST_CONTEXT_NAME) await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_context_press_action_count, 1) self.assertEqual(_context_release_action_count, 1) self.assertEqual(_global_press_action_count, 0) self.assertEqual(_global_release_action_count, 0) self._hotkey_context.pop() # Trigger hotkey in global await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_context_press_action_count, 1) self.assertEqual(_context_release_action_count, 1) self.assertEqual(_global_press_action_count, 1) self.assertEqual(_global_release_action_count, 1) async def test_allow_list(self): global _global_press_action_count, _global_release_action_count settings = carb.settings.get_settings() try: # Do not trigger since key not in allow list settings.set(SETTING_ALLOW_LIST, ["F1"]) await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_global_press_action_count, 0) self.assertEqual(_global_release_action_count, 0) # Trigger since key in allow list settings.set(SETTING_ALLOW_LIST, ["CTRL + T"]) await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_global_press_action_count, 1) self.assertEqual(_global_release_action_count, 1) # Trigger since no allow list settings.set(SETTING_ALLOW_LIST, []) await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.T, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) await ui_test.human_delay() self.assertEqual(_global_press_action_count, 2) self.assertEqual(_global_release_action_count, 2) finally: settings.set(SETTING_ALLOW_LIST, []) _global_press_action_count = 0 _global_release_action_count = 0
omniverse-code/kit/exts/omni.kit.hotkeys.core/omni/kit/hotkeys/core/tests/test_key_combination.py
# NOTE: # omni.kit.test - std python's unittest module with additional wrapping to add suport for async/await tests # For most things refer to unittest docs: https://docs.python.org/3/library/unittest.html import omni.kit.test # Import extension python module we are testing with absolute import path, as if we are external user (other extension) from omni.kit.hotkeys.core import KeyCombination import carb.input # Having a test class dervived from omni.kit.test.AsyncTestCase declared on the root of module will make it auto-discoverable by omni.kit.test class TestKeyCombination(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): pass # After running each test async def tearDown(self): pass # Actual test, notice it is "async" function, so "await" can be used if needed async def test_key_define_function(self): key_comb = KeyCombination(carb.input.KeyboardInput.D) self.assertEqual(key_comb.as_string, "D") self.assertEqual(key_comb.trigger_press, True) key_comb = KeyCombination(carb.input.KeyboardInput.D, trigger_press=False) self.assertEqual(key_comb.as_string, "D") self.assertEqual(key_comb.trigger_press, False) key_comb = KeyCombination(carb.input.KeyboardInput.D, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) self.assertEqual(key_comb.as_string, "CTRL + D") key_comb = KeyCombination(carb.input.KeyboardInput.D, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT) self.assertEqual(key_comb.as_string, "SHIFT + D") key_comb = KeyCombination(carb.input.KeyboardInput.D, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_ALT) self.assertEqual(key_comb.as_string, "ALT + D") key_comb = KeyCombination(carb.input.KeyboardInput.A, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL + carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT) self.assertEqual(key_comb.as_string, "SHIFT + CTRL + A") key_comb = KeyCombination(carb.input.KeyboardInput.A, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL + carb.input.KEYBOARD_MODIFIER_FLAG_ALT) self.assertEqual(key_comb.as_string, "CTRL + ALT + A") key_comb = KeyCombination(carb.input.KeyboardInput.A, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_ALT + carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT) self.assertEqual(key_comb.as_string, "SHIFT + ALT + A") key_comb = KeyCombination(carb.input.KeyboardInput.B, modifiers=carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL + carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT + carb.input.KEYBOARD_MODIFIER_FLAG_ALT) self.assertEqual(key_comb.as_string, "SHIFT + CTRL + ALT + B") async def test_key_string_function(self): key_comb = KeyCombination("d") self.assertEqual(key_comb.as_string, "D") key_comb = KeyCombination("D") self.assertEqual(key_comb.as_string, "D") self.assertTrue(key_comb.trigger_press) key_comb = KeyCombination("D", trigger_press=False) self.assertEqual(key_comb.as_string, "D") self.assertFalse(key_comb.trigger_press) key_comb = KeyCombination("ctrl+d") self.assertEqual(key_comb.as_string, "CTRL + D") key_comb = KeyCombination("ctl+d") self.assertEqual(key_comb.as_string, "CTRL + D") key_comb = KeyCombination("control+d") self.assertEqual(key_comb.as_string, "CTRL + D") key_comb = KeyCombination("shift+d") self.assertEqual(key_comb.as_string, "SHIFT + D") key_comb = KeyCombination("alt+d") self.assertEqual(key_comb.as_string, "ALT + D") key_comb = KeyCombination("ctrl+shift+a") self.assertEqual(key_comb.as_string, "SHIFT + CTRL + A") key_comb = KeyCombination("shift+ctrl+A") self.assertEqual(key_comb.as_string, "SHIFT + CTRL + A") key_comb = KeyCombination("ctrl+ALT+a") self.assertEqual(key_comb.as_string, "CTRL + ALT + A") key_comb = KeyCombination("alt+CTRL+a") self.assertEqual(key_comb.as_string, "CTRL + ALT + A") key_comb = KeyCombination("ALT+shift+a") self.assertEqual(key_comb.as_string, "SHIFT + ALT + A") key_comb = KeyCombination("SHIFT+alt+a") self.assertEqual(key_comb.as_string, "SHIFT + ALT + A") key_comb = KeyCombination("Ctrl+shift+alt+b") self.assertEqual(key_comb.as_string, "SHIFT + CTRL + ALT + B") key_comb = KeyCombination("Ctrl+alt+shift+b") self.assertEqual(key_comb.as_string, "SHIFT + CTRL + ALT + B")
omniverse-code/kit/exts/omni.kit.hotkeys.core/docs/index.rst
omni.kit.hotkeys.core ########################### omni.kit.hotkeys.core .. toctree:: :maxdepth: 1 CHANGELOG USAGE
omniverse-code/kit/exts/omni.gpu_foundation/omni/gpu_foundation_factory/__init__.py
from ._gpu_foundation_factory import * from .impl.foundation_extension import GpuFoundationConfig # Cached interface instance pointer def get_gpu_foundation_factory_interface() -> IGpuFoundationFactory: """Returns cached :class:`omni.gpu_foundation.IGpuFoundationFactory` interface""" if not hasattr(get_gpu_foundation_factory_interface, "gpu_foundation_factory"): get_gpu_foundation_factory_interface.gpu_foundation_factory = acquire_gpu_foundation_factory_interface() return get_gpu_foundation_factory_interface.gpu_foundation_factory
omniverse-code/kit/exts/omni.gpu_foundation/omni/gpu_foundation_factory/_gpu_foundation_factory.pyi
""" This module contains bindings to GPU Foundation. """ from __future__ import annotations import omni.gpu_foundation_factory._gpu_foundation_factory import typing import carb._carb __all__ = [ "Device", "IGpuFoundationFactory", "RpResource", "Texture", "TextureFormat", "acquire_gpu_foundation_factory_interface", "get_driver_version", "get_gpus_list", "get_memory_info", "get_os_build_number", "get_os_name", "get_page_swap_info", "get_processor_brand_name", "get_processor_core_count", "release_gpu_foundation_factory_interface" ] class Device(): pass class IGpuFoundationFactory(): def get_device_count(self) -> int: ... def get_device_index(self, arg0: int, arg1: int) -> int: ... def get_device_name(self, arg0: int) -> str: ... @staticmethod def get_gpu_foundation(*args, **kwargs) -> typing.Any: ... def get_graphics_interface_desc(self) -> carb._carb.PluginDesc: ... def get_local_device_index(self, arg0: int) -> int: ... def get_process_count(self) -> int: ... def get_process_index(self) -> int: ... def get_process_index_for_device(self, arg0: int) -> int: ... def shutdown_gpu_foundation(self) -> None: ... def shutdown_graphics(self) -> None: ... def startup_gpu_foundation(self) -> bool: ... def startup_graphics(self) -> bool: ... pass class RpResource(): pass class Texture(): pass class TextureFormat(): """ Members: R8_UNORM R8_SNORM R8_UINT R8_SINT RG8_UNORM RG8_SNORM RG8_UINT RG8_SINT BGRA8_UNORM BGRA8_SRGB RGBA8_UNORM RGBA8_SNORM RGBA8_UINT RGBA8_SINT RGBA8_SRGB R16_UNORM R16_SNORM R16_UINT R16_SINT R16_SFLOAT RG16_UNORM RG16_SNORM RG16_UINT RG16_SINT RG16_SFLOAT RGBA16_UNORM RGBA16_SNORM RGBA16_UINT RGBA16_SINT RGBA16_SFLOAT R32_UINT R32_SINT R32_SFLOAT RG32_UINT RG32_SINT RG32_SFLOAT RGB32_UINT RGB32_SINT RGB32_SFLOAT RGBA32_UINT RGBA32_SINT RGBA32_SFLOAT R10_G10_B10_A2_UNORM R10_G10_B10_A2_UINT R11_G11_B10_UFLOAT R9_G9_B9_E5_UFLOAT B5_G6_R5_UNORM B5_G5_R5_A1_UNORM BC1_RGBA_UNORM BC1_RGBA_SRGB BC2_RGBA_UNORM BC2_RGBA_SRGB BC3_RGBA_UNORM BC3_RGBA_SRGB BC4_R_UNORM BC4_R_SNORM BC5_RG_UNORM BC5_RG_SNORM BC6H_RGB_UFLOAT BC6H_RGB_SFLOAT BC7_RGBA_UNORM BC7_RGBA_SRGB D16_UNORM D24_UNORM_S8_UINT D32_SFLOAT D32_SFLOAT_S8_UINT_X24 R24_UNORM_X8 X24_R8_UINT X32_R8_UINT_X24 R32_SFLOAT_X8_X24 SAMPLER_FEEDBACK_MIN_MIP SAMPLER_FEEDBACK_MIP_REGION_USED """ def __eq__(self, other: object) -> bool: ... def __getstate__(self) -> int: ... def __hash__(self) -> int: ... def __index__(self) -> int: ... def __init__(self, value: int) -> None: ... def __int__(self) -> int: ... def __ne__(self, other: object) -> bool: ... def __repr__(self) -> str: ... def __setstate__(self, state: int) -> None: ... @property def name(self) -> str: """ :type: str """ @property def value(self) -> int: """ :type: int """ B5_G5_R5_A1_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.B5_G5_R5_A1_UNORM: 48> B5_G6_R5_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.B5_G6_R5_UNORM: 47> BC1_RGBA_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC1_RGBA_SRGB: 50> BC1_RGBA_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC1_RGBA_UNORM: 49> BC2_RGBA_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC2_RGBA_SRGB: 52> BC2_RGBA_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC2_RGBA_UNORM: 51> BC3_RGBA_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC3_RGBA_SRGB: 54> BC3_RGBA_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC3_RGBA_UNORM: 53> BC4_R_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC4_R_SNORM: 56> BC4_R_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC4_R_UNORM: 55> BC5_RG_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC5_RG_SNORM: 58> BC5_RG_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC5_RG_UNORM: 57> BC6H_RGB_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC6H_RGB_SFLOAT: 60> BC6H_RGB_UFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC6H_RGB_UFLOAT: 59> BC7_RGBA_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC7_RGBA_SRGB: 62> BC7_RGBA_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BC7_RGBA_UNORM: 61> BGRA8_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BGRA8_SRGB: 10> BGRA8_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.BGRA8_UNORM: 9> D16_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.D16_UNORM: 63> D24_UNORM_S8_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.D24_UNORM_S8_UINT: 64> D32_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.D32_SFLOAT: 65> D32_SFLOAT_S8_UINT_X24: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.D32_SFLOAT_S8_UINT_X24: 66> R10_G10_B10_A2_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R10_G10_B10_A2_UINT: 44> R10_G10_B10_A2_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R10_G10_B10_A2_UNORM: 43> R11_G11_B10_UFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R11_G11_B10_UFLOAT: 45> R16_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R16_SFLOAT: 20> R16_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R16_SINT: 19> R16_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R16_SNORM: 17> R16_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R16_UINT: 18> R16_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R16_UNORM: 16> R24_UNORM_X8: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R24_UNORM_X8: 67> R32_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R32_SFLOAT: 33> R32_SFLOAT_X8_X24: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R32_SFLOAT_X8_X24: 70> R32_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R32_SINT: 32> R32_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R32_UINT: 31> R8_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R8_SINT: 4> R8_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R8_SNORM: 2> R8_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R8_UINT: 3> R8_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R8_UNORM: 1> R9_G9_B9_E5_UFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.R9_G9_B9_E5_UFLOAT: 46> RG16_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG16_SFLOAT: 25> RG16_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG16_SINT: 24> RG16_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG16_SNORM: 22> RG16_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG16_UINT: 23> RG16_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG16_UNORM: 21> RG32_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG32_SFLOAT: 36> RG32_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG32_SINT: 35> RG32_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG32_UINT: 34> RG8_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG8_SINT: 8> RG8_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG8_SNORM: 6> RG8_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG8_UINT: 7> RG8_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RG8_UNORM: 5> RGB32_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGB32_SFLOAT: 39> RGB32_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGB32_SINT: 38> RGB32_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGB32_UINT: 37> RGBA16_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA16_SFLOAT: 30> RGBA16_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA16_SINT: 29> RGBA16_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA16_SNORM: 27> RGBA16_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA16_UINT: 28> RGBA16_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA16_UNORM: 26> RGBA32_SFLOAT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA32_SFLOAT: 42> RGBA32_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA32_SINT: 41> RGBA32_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA32_UINT: 40> RGBA8_SINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA8_SINT: 14> RGBA8_SNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA8_SNORM: 12> RGBA8_SRGB: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA8_SRGB: 15> RGBA8_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA8_UINT: 13> RGBA8_UNORM: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.RGBA8_UNORM: 11> SAMPLER_FEEDBACK_MIN_MIP: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.SAMPLER_FEEDBACK_MIN_MIP: 71> SAMPLER_FEEDBACK_MIP_REGION_USED: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.SAMPLER_FEEDBACK_MIP_REGION_USED: 72> X24_R8_UINT: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.X24_R8_UINT: 68> X32_R8_UINT_X24: omni.gpu_foundation_factory._gpu_foundation_factory.TextureFormat # value = <TextureFormat.X32_R8_UINT_X24: 69> __members__: dict # value = {'R8_UNORM': <TextureFormat.R8_UNORM: 1>, 'R8_SNORM': <TextureFormat.R8_SNORM: 2>, 'R8_UINT': <TextureFormat.R8_UINT: 3>, 'R8_SINT': <TextureFormat.R8_SINT: 4>, 'RG8_UNORM': <TextureFormat.RG8_UNORM: 5>, 'RG8_SNORM': <TextureFormat.RG8_SNORM: 6>, 'RG8_UINT': <TextureFormat.RG8_UINT: 7>, 'RG8_SINT': <TextureFormat.RG8_SINT: 8>, 'BGRA8_UNORM': <TextureFormat.BGRA8_UNORM: 9>, 'BGRA8_SRGB': <TextureFormat.BGRA8_SRGB: 10>, 'RGBA8_UNORM': <TextureFormat.RGBA8_UNORM: 11>, 'RGBA8_SNORM': <TextureFormat.RGBA8_SNORM: 12>, 'RGBA8_UINT': <TextureFormat.RGBA8_UINT: 13>, 'RGBA8_SINT': <TextureFormat.RGBA8_SINT: 14>, 'RGBA8_SRGB': <TextureFormat.RGBA8_SRGB: 15>, 'R16_UNORM': <TextureFormat.R16_UNORM: 16>, 'R16_SNORM': <TextureFormat.R16_SNORM: 17>, 'R16_UINT': <TextureFormat.R16_UINT: 18>, 'R16_SINT': <TextureFormat.R16_SINT: 19>, 'R16_SFLOAT': <TextureFormat.R16_SFLOAT: 20>, 'RG16_UNORM': <TextureFormat.RG16_UNORM: 21>, 'RG16_SNORM': <TextureFormat.RG16_SNORM: 22>, 'RG16_UINT': <TextureFormat.RG16_UINT: 23>, 'RG16_SINT': <TextureFormat.RG16_SINT: 24>, 'RG16_SFLOAT': <TextureFormat.RG16_SFLOAT: 25>, 'RGBA16_UNORM': <TextureFormat.RGBA16_UNORM: 26>, 'RGBA16_SNORM': <TextureFormat.RGBA16_SNORM: 27>, 'RGBA16_UINT': <TextureFormat.RGBA16_UINT: 28>, 'RGBA16_SINT': <TextureFormat.RGBA16_SINT: 29>, 'RGBA16_SFLOAT': <TextureFormat.RGBA16_SFLOAT: 30>, 'R32_UINT': <TextureFormat.R32_UINT: 31>, 'R32_SINT': <TextureFormat.R32_SINT: 32>, 'R32_SFLOAT': <TextureFormat.R32_SFLOAT: 33>, 'RG32_UINT': <TextureFormat.RG32_UINT: 34>, 'RG32_SINT': <TextureFormat.RG32_SINT: 35>, 'RG32_SFLOAT': <TextureFormat.RG32_SFLOAT: 36>, 'RGB32_UINT': <TextureFormat.RGB32_UINT: 37>, 'RGB32_SINT': <TextureFormat.RGB32_SINT: 38>, 'RGB32_SFLOAT': <TextureFormat.RGB32_SFLOAT: 39>, 'RGBA32_UINT': <TextureFormat.RGBA32_UINT: 40>, 'RGBA32_SINT': <TextureFormat.RGBA32_SINT: 41>, 'RGBA32_SFLOAT': <TextureFormat.RGBA32_SFLOAT: 42>, 'R10_G10_B10_A2_UNORM': <TextureFormat.R10_G10_B10_A2_UNORM: 43>, 'R10_G10_B10_A2_UINT': <TextureFormat.R10_G10_B10_A2_UINT: 44>, 'R11_G11_B10_UFLOAT': <TextureFormat.R11_G11_B10_UFLOAT: 45>, 'R9_G9_B9_E5_UFLOAT': <TextureFormat.R9_G9_B9_E5_UFLOAT: 46>, 'B5_G6_R5_UNORM': <TextureFormat.B5_G6_R5_UNORM: 47>, 'B5_G5_R5_A1_UNORM': <TextureFormat.B5_G5_R5_A1_UNORM: 48>, 'BC1_RGBA_UNORM': <TextureFormat.BC1_RGBA_UNORM: 49>, 'BC1_RGBA_SRGB': <TextureFormat.BC1_RGBA_SRGB: 50>, 'BC2_RGBA_UNORM': <TextureFormat.BC2_RGBA_UNORM: 51>, 'BC2_RGBA_SRGB': <TextureFormat.BC2_RGBA_SRGB: 52>, 'BC3_RGBA_UNORM': <TextureFormat.BC3_RGBA_UNORM: 53>, 'BC3_RGBA_SRGB': <TextureFormat.BC3_RGBA_SRGB: 54>, 'BC4_R_UNORM': <TextureFormat.BC4_R_UNORM: 55>, 'BC4_R_SNORM': <TextureFormat.BC4_R_SNORM: 56>, 'BC5_RG_UNORM': <TextureFormat.BC5_RG_UNORM: 57>, 'BC5_RG_SNORM': <TextureFormat.BC5_RG_SNORM: 58>, 'BC6H_RGB_UFLOAT': <TextureFormat.BC6H_RGB_UFLOAT: 59>, 'BC6H_RGB_SFLOAT': <TextureFormat.BC6H_RGB_SFLOAT: 60>, 'BC7_RGBA_UNORM': <TextureFormat.BC7_RGBA_UNORM: 61>, 'BC7_RGBA_SRGB': <TextureFormat.BC7_RGBA_SRGB: 62>, 'D16_UNORM': <TextureFormat.D16_UNORM: 63>, 'D24_UNORM_S8_UINT': <TextureFormat.D24_UNORM_S8_UINT: 64>, 'D32_SFLOAT': <TextureFormat.D32_SFLOAT: 65>, 'D32_SFLOAT_S8_UINT_X24': <TextureFormat.D32_SFLOAT_S8_UINT_X24: 66>, 'R24_UNORM_X8': <TextureFormat.R24_UNORM_X8: 67>, 'X24_R8_UINT': <TextureFormat.X24_R8_UINT: 68>, 'X32_R8_UINT_X24': <TextureFormat.X32_R8_UINT_X24: 69>, 'R32_SFLOAT_X8_X24': <TextureFormat.R32_SFLOAT_X8_X24: 70>, 'SAMPLER_FEEDBACK_MIN_MIP': <TextureFormat.SAMPLER_FEEDBACK_MIN_MIP: 71>, 'SAMPLER_FEEDBACK_MIP_REGION_USED': <TextureFormat.SAMPLER_FEEDBACK_MIP_REGION_USED: 72>} pass def acquire_gpu_foundation_factory_interface(plugin_name: str = None, library_path: str = None) -> IGpuFoundationFactory: pass def get_driver_version(arg0: Device) -> carb._carb.Uint2: pass def get_gpus_list(arg0: Device) -> typing.List[str]: pass def get_memory_info(system: bool = True, rss: bool = False, page: bool = False) -> dict: pass def get_os_build_number() -> int: pass def get_os_name() -> str: pass def get_page_swap_info() -> dict: pass def get_processor_brand_name() -> str: pass def get_processor_core_count() -> dict: pass def release_gpu_foundation_factory_interface(arg0: IGpuFoundationFactory) -> None: pass
omniverse-code/kit/exts/omni.kit.property.material/PACKAGE-LICENSES/omni.kit.property.material-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited.
omniverse-code/kit/exts/omni.kit.property.material/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.8.19" category = "Internal" feature = true # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "Material Property Widget" description="View and Edit Material Property Values" # URL of the extension source repository. repository = "" # Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file). preview_image = "data/preview.png" # Icon is shown in Extensions window, it is recommended to be square, of size 256x256. icon = "data/icon.png" # Keywords for the extension keywords = ["kit", "usd", "property", "material"] # Location of change log file in target (final) folder of extension, relative to the root. # More info on writing changelog: https://keepachangelog.com/en/1.0.0/ changelog="docs/CHANGELOG.md" # Path (relative to the root) or content of readme markdown file for UI. readme = "docs/README.md" [dependencies] "omni.usd" = {} "omni.ui" = {} "omni.kit.window.property" = {} "omni.kit.material.library" = {} "omni.kit.property.usd" = {} "omni.client" = {} "omni.kit.window.quicksearch" = { optional = true } [[python.module]] name = "omni.kit.property.material" [[test]] args = [ "--/renderer/enabled=pxr", "--/renderer/active=pxr", "--/renderer/multiGpu/enabled=false", "--/renderer/multiGpu/autoEnable=false", # Disable mGPU with PXR due to OM-51026, OM-53611 "--/renderer/multiGpu/maxGpuCount=1", "--/app/asyncRendering=false", "--/app/window/dpiScaleOverride=1.0", "--/app/window/scaleToMonitor=false", "--/persistent/app/stage/dragDropImport='reference'", "--/persistent/app/material/dragDropMaterialPath='absolute'", "--/persistent/app/omniverse/filepicker/options_menu/show_details=false", "--no-window" ] dependencies = [ "omni.kit.renderer.capture", "omni.kit.mainwindow", "omni.kit.widget.stage", "omni.kit.window.content_browser", "omni.kit.window.stage", "omni.kit.ui_test", "omni.kit.test_suite.helpers", "omni.hydra.pxr", "omni.kit.window.viewport" ] stdoutFailPatterns.exclude = [ "*HydraRenderer failed to render this frame*", # Can drop a frame or two rendering with OpenGL interop "*Cannot use omni.hydra.pxr without OpenGL interop*" # Linux TC configs with multi-GPU might not have OpenGL available ]
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/__init__.py
from .scripts import *
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/material_utils.py
import carb from pxr import Usd, Sdf, UsdShade class Constant: def __setattr__(self, name, value): raise Exception(f"Can't change Constant.{name}") ICON_SIZE = 96 BOUND_LABEL_WIDTH = 50 FONT_SIZE = 14.0 SDF_PATH_INVALID = "$NONE$" PERSISTENT_SETTINGS_PREFIX = "/persistent" MIXED = "Mixed" MIXED_COLOR = 0xFFCC9E61 # verify SDF_PATH_INVALID is invalid if Sdf.Path.IsValidPathString(SDF_PATH_INVALID): raise Exception(f"SDF_PATH_INVALID is Sdf.Path.IsValidPathString - FIXME") def _populate_data(stage, material_data, collection_or_prim, material=None, relationship=None): def update_strength(value, strength): if value is None: value = strength elif value != strength: value = Constant.MIXED return value if isinstance(collection_or_prim, Usd.CollectionAPI): prim_path = collection_or_prim.GetCollectionPath() else: prim_path = collection_or_prim.GetPath() inherited = False strength_default = carb.settings.get_settings().get( Constant.PERSISTENT_SETTINGS_PREFIX + "/app/stage/materialStrength" ) strength = strength_default material_name = Constant.SDF_PATH_INVALID if material: relationship_source_path = None if relationship: relationship_source_path = relationship.GetPrim().GetPath() if isinstance(collection_or_prim, Usd.CollectionAPI): relationship_source_path = relationship.GetTargets()[0] if ( material and relationship and prim_path.pathString != relationship_source_path.pathString ): #If we have a material, but it's not assigned directly to us, it must be inherited inherited = True if relationship: strength = UsdShade.MaterialBindingAPI.GetMaterialBindingStrength(relationship) material_name = material.GetPrim().GetPath().pathString if not material_name in material_data["material"]: material_data["material"][material_name] = { "bound": set(), "inherited": set(), "bound_info": set(), "inherited_info": set(), "relationship": set(), "strength": None, } if inherited: material_data["material"][material_name]["inherited"].add(collection_or_prim) material_data["material"][material_name]["inherited_info"].add( (prim_path.pathString, material_name, strength) ) material_data["inherited"].add(collection_or_prim) material_data["inherited_info"].add((prim_path.pathString, material_name, strength)) else: material_data["material"][material_name]["bound"].add(collection_or_prim) material_data["material"][material_name]["bound_info"].add( (prim_path.pathString, material_name, strength) ) material_data["bound"].add(collection_or_prim) material_data["bound_info"].add((prim_path.pathString, material_name, strength)) if relationship: material_data["relationship"].add(relationship) material_data["material"][material_name]["relationship"].add(relationship) if strength is not None: material_data["material"][material_name]["strength"] = update_strength( material_data["material"][material_name]["strength"], strength ) material_data["strength"] = update_strength(material_data["strength"], strength) def get_binding_from_prims(stage, prim_paths): material_data = {"material": {}, "bound": set(), "bound_info": set(), "inherited": set(), "inherited_info": set(), "relationship": set(), "strength": None} for prim_path in prim_paths: if prim_path.IsPrimPath(): prim = stage.GetPrimAtPath(prim_path) if prim: material, relationship = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() _populate_data(stage, material_data, prim, material, relationship) elif Usd.CollectionAPI.IsCollectionAPIPath(prim_path): real_prim_path = prim_path.GetPrimPath() prim = stage.GetPrimAtPath(real_prim_path) binding_api = UsdShade.MaterialBindingAPI(prim) all_bindings = binding_api.GetCollectionBindings() collection_name = prim_path.pathString[prim_path.pathString.find(".collection:")+12:] #TODO: test this when we have multiple collections on a prim if all_bindings: for b in all_bindings: collection = b.GetCollection() if collection_name==collection.GetName(): relationship = b.GetBindingRel() material = b.GetMaterial() _populate_data(stage, material_data, collection, material, relationship) else: #If there are no bindings we want to set up defaults anyway so the widget appears with "None" assigned collection = Usd.CollectionAPI.Get(stage, prim_path) _populate_data(stage, material_data, collection) return material_data
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/__init__.py
from .material_properties import *
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/usd_attribute_widget.py
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from typing import List from omni.kit.window.property.templates import SimplePropertyWidget from omni.kit.property.usd.usd_property_widget import UsdPropertiesWidget, UsdPropertyUiEntry from .subIdentifier_utils import SubIdentifierUtils import copy import asyncio import carb import omni.ui as ui import omni.usd from pxr import Usd, Tf, Vt, Sdf, UsdShade, UsdUI class UsdMaterialAttributeWidget(UsdPropertiesWidget): def __init__(self, schema: Usd.SchemaBase, title: str, include_names: List[str], exclude_names: List[str], schema_ignore: Usd.SchemaBase=None): """ Constructor. Args: schema (Usd.SchemaBase): schema class schema_ignore (List[Usd.SchemaBase]): ignored schema class title (str): Title of the widgets on the Collapsable Frame. include_names (list): list of names to be included exclude_names (list): list of names to be excluded """ super().__init__(title=title, collapsed=False) self._title = title self._schema = schema self._schema_ignore = schema_ignore self._schema_attr_names = self._schema.GetSchemaAttributeNames(True) self._schema_attr_names = self._schema_attr_names + include_names self._schema_attr_names = set(self._schema_attr_names) - set(exclude_names) self._additional_paths = [] self._lookup_table = { # materials - should be set "inputs:diffuse_color_constant": {"name": "Base Color", "group": "Albedo"}, "inputs:diffuse_texture": {"name": "Albedo Map", "group": "Albedo"}, "inputs:albedo_desaturation": {"name": "Albedo Desaturation", "group": "Albedo"}, "inputs:albedo_add": {"name": "Albedo Add", "group": "Albedo"}, "inputs:albedo_brightness": {"name": "Albedo Brightness", "group": "Albedo"}, "inputs:diffuse_tint": {"name": "Color Tint", "group": "Albedo"}, "inputs:reflection_roughness_constant": {"name": "Roughness Amount", "group": "Reflectivity"}, "inputs:reflection_roughness_texture_influence": { "name": "Roughness Map Influence", "group": "Reflectivity", }, "inputs:reflectionroughness_texture": {"name": "Roughness Map", "group": "Reflectivity"}, "inputs:metallic_constant": {"name": "Metallic Amount", "group": "Reflectivity"}, "inputs:metallic_texture_influence": {"name": "Metallic Map Influence", "group": "Reflectivity"}, "inputs:metallic_texture": {"name": "Metallic Map", "group": "Reflectivity"}, "inputs:specular_level": {"name": "Specular", "group": "Reflectivity"}, "inputs:enable_ORM_texture": {"name": "Enable ORM Texture", "group": "Reflectivity"}, "inputs:ORM_texture": {"name": "ORM Map", "group": "Reflectivity"}, "inputs:ao_to_diffuse": {"name": "AO to Diffuse", "group": "AO"}, "inputs:ao_texture": {"name": "Ambient Occlusion Map", "group": "AO"}, "inputs:enable_emission": {"name": "Enable Emission", "group": "Emissive"}, "inputs:emissive_color": {"name": "Emissive Color", "group": "Emissive"}, "inputs:emissive_color_texture": {"name": "Emissive Color map", "group": "Emissive"}, "inputs:emissive_mask_texture": {"name": "Emissive Mask map", "group": "Emissive"}, "inputs:emissive_intensity": {"name": "Emissive Intensity", "group": "Emissive"}, "inputs:bump_factor": {"name": "Normal Map Strength", "group": "Normal"}, "inputs:normalmap_texture": {"name": "Normal Map", "group": "Normal"}, "inputs:detail_bump_factor": {"name": "Detail Normal Strength", "group": "Normal"}, "inputs:detail_normalmap_texture": {"name": "Detail Normal Map", "group": "Normal"}, "inputs:project_uvw": {"name": "Enable Project UVW Coordinates", "group": "UV"}, "inputs:world_or_object": {"name": "Enable World Space", "group": "UV"}, "inputs:uv_space_index": {"name": "UV Space Index", "group": "UV"}, "inputs:texture_translate": {"name": "Texture Translate", "group": "UV"}, "inputs:texture_rotate": {"name": "Texture Rotate", "group": "UV"}, "inputs:texture_scale": {"name": "Texture Scale", "group": "UV"}, "inputs:detail_texture_translate": {"name": "Detail Texture Translate", "group": "UV"}, "inputs:detail_texture_rotate": {"name": "Detail Texture Rotate", "group": "UV"}, "inputs:detail_texture_scale": {"name": "Detail Texture Scale", "group": "UV"}, "inputs:excludeFromWhiteMode": {"group": "Material Flags", "name": "Exclude from White Mode"}, # UsdUVTexture "inputs:sourceColorSpace": {"group": "UsdUVTexture", "name": "inputs:sourceColorSpace"}, "inputs:fallback": {"group": "UsdUVTexture", "name": "inputs:fallback"}, "inputs:file": {"group": "UsdUVTexture", "name": "inputs:file"}, "inputs:sdrMetadata": {"group": "UsdUVTexture", "name": "inputs:sdrMetadata"}, "inputs:rgb": {"group": "UsdUVTexture", "name": "inputs:rgb"}, "inputs:scale": {"group": "UsdUVTexture", "name": "inputs:scale"}, "inputs:bias": {"group": "UsdUVTexture", "name": "inputs:bias"}, "inputs:wrapS": {"group": "UsdUVTexture", "name": "inputs:wrapS"}, "inputs:wrapT": {"group": "UsdUVTexture", "name": "inputs:wrapT"}, # preview surface inputs "inputs:diffuseColor": {"name": "Diffuse Color", "group": "Inputs"}, "inputs:emissiveColor": {"name": "Emissive Color", "group": "Inputs"}, "inputs:useSpecularWorkflow": {"name": "Use Specular Workflow", "group": "Inputs"}, "inputs:specularColor": {"name": "Specular Color", "group": "Inputs"}, "inputs:metallic": {"name": "Metallic", "group": "Inputs"}, "inputs:roughness": {"name": "Roughness", "group": "Inputs"}, "inputs:clearcoat": {"name": "Clearcoat", "group": "Inputs"}, "inputs:clearcoatRoughness": {"name": "Clearcoat Roughness", "group": "Inputs"}, "inputs:opacity": {"name": "Opacity", "group": "Inputs"}, "inputs:opacityThreshold": {"name": "Opacity Threshold", "group": "Inputs"}, "inputs:ior": {"name": "Index Of Refraction", "group": "Inputs"}, "inputs:normal": {"name": "Normal", "group": "Inputs"}, "inputs:displacement": {"name": "Displacement", "group": "Inputs"}, "inputs:occlusion": {"name": "Occlusion", "group": "Inputs"}, # info "info:id": {"name": "ID", "group": "Info"}, "info:implementationSource": {"name": "Implementation Source", "group": "Info"}, "info:mdl:sourceAsset": {"name": "", "group": "Info"}, "info:mdl:sourceAsset:subIdentifier": {"name": "", "group": "Info"}, # nodegraph "ui:nodegraph:node:displayColor": {"name": "Display Color", "group": "UI Properties"}, "ui:nodegraph:node:expansionState": {"name": "Expansion State", "group": "UI Properties"}, "ui:nodegraph:node:icon": {"name": "Icon", "group": "UI Properties"}, "ui:nodegraph:node:pos": {"name": "Position", "group": "UI Properties"}, "ui:nodegraph:node:size": {"name": "Size", "group": "UI Properties"}, "ui:nodegraph:node:stackingOrder": {"name": "Stacking Order", "group": "UI Properties"}, # backdrop "ui:description": {"name": "Description", "group": "UI Properties"}, } def on_new_payload(self, payload): """ See PropertyWidget.on_new_payload """ self._anchor_prim = None self._shader_paths = [] self._add_source_color_space_placeholder = False self._material_annotations = {} if not super().on_new_payload(payload): return False if len(self._payload) == 0: return False anchor_prim = None shader_paths = [] mtl_paths = [] for prim_path in self._payload: prim = self._get_prim(prim_path) if not prim or not prim.IsA(self._schema): return False if self._schema_ignore and prim.IsA(self._schema_ignore): return False shader_prim = omni.usd.get_shader_from_material(prim, True) if shader_prim: shader_paths.append(shader_prim.GetPath()) shader = UsdShade.Shader(shader_prim if shader_prim else prim) asset = shader.GetSourceAsset("mdl") if shader else None mdl_file = asset.resolvedPath if asset else None if mdl_file: def loaded_mdl_subids(mtl_list, filename): mdl_dict = {} for mtl in mtl_list: mdl_dict[mtl.name] = mtl.annotations self._material_annotations[filename] = mdl_dict mtl_paths.append(mdl_file) asyncio.ensure_future(omni.kit.material.library.get_subidentifier_from_mdl(mdl_file=mdl_file, on_complete_fn=lambda l, f=mdl_file: loaded_mdl_subids(mtl_list=l, filename=f))) anchor_prim = prim if anchor_prim: stage = payload.get_stage() shader = UsdShade.Shader.Get(stage, anchor_prim.GetPath()) if shader and shader.GetShaderId() == "UsdUVTexture": attr = anchor_prim.GetAttribute("inputs:sourceColorSpace") if not attr: self._add_source_color_space_placeholder = True elif attr.GetTypeName() == Sdf.ValueTypeNames.Token: tokens = attr.GetMetadata("allowedTokens") if not tokens: # fix missing tokens on attribute attr.SetMetadata("allowedTokens", ["auto", "raw", "sRGB"]) self._mtl_identical = True if mtl_paths: self._mtl_identical = mtl_paths.count(mtl_paths[0]) == len(mtl_paths) self._anchor_prim = anchor_prim self._shader_paths = shader_paths if anchor_prim: return True return False def _filter_props_to_build(self, attrs): if not self._mtl_identical: for attr in copy.copy(attrs): if attr.GetName() == "info:mdl:sourceAsset:subIdentifier": attrs.remove(attr) return [ attr for attr in attrs if isinstance(attr, Usd.Attribute) and (attr.GetName() in self._schema_attr_names and not attr.IsHidden() or UsdShade.Input.IsInput(attr) and not attr.IsHidden() or UsdShade.Output.IsOutput(attr) and not attr.IsHidden()) ] def _customize_props_layout(self, attrs): from omni.kit.property.usd.custom_layout_helper import ( CustomLayoutFrame, CustomLayoutGroup, CustomLayoutProperty, ) from omni.kit.window.property.templates import ( SimplePropertyWidget, LABEL_WIDTH, LABEL_HEIGHT, HORIZONTAL_SPACING, ) self._additional_paths = [] if not self._anchor_prim: return [] ignore_list = ["outputs:out", "info:id", "info:implementationSource", "info:mdl:sourceAsset", "info:mdl:sourceAsset:subIdentifier"] # check for duplicate attributes in material/shader stage = self._payload.get_stage() add_source_color_space_placeholder = len(self._payload) for path in self._payload: prim = stage.GetPrimAtPath(path) shader_prim = omni.usd.get_shader_from_material(prim, True) if shader_prim: shader = UsdShade.Shader.Get(stage, shader_prim.GetPath()) if shader and shader.GetShaderId() == "UsdUVTexture": attr = shader_prim.GetAttribute("inputs:sourceColorSpace") if not attr: add_source_color_space_placeholder -= 1 if add_source_color_space_placeholder == 0: self._add_source_color_space_placeholder = True # get child attributes attr_added = {} for path in self._payload: if not path in attr_added: attr_added[path.pathString] = {} material_prim = stage.GetPrimAtPath(path) shader_prim = omni.usd.get_shader_from_material(material_prim, True) if shader_prim: asyncio.ensure_future(omni.usd.get_context().load_mdl_parameters_for_prim_async(shader_prim)) for shader_attr in shader_prim.GetAttributes(): if shader_attr.IsHidden(): continue # check if shader attribute already exists in material material_attr = material_prim.GetAttribute(shader_attr.GetName()) if material_attr.IsHidden(): continue if material_attr: # use material attribute NOT shader attribute attr_added[path.pathString][shader_attr.GetName()] = material_attr continue # add paths to usd_changed watch list prim_path = shader_attr.GetPrimPath() if not prim_path in self._payload and not prim_path in self._additional_paths: self._additional_paths.append(prim_path) if not any(name in shader_attr.GetName() for name in ignore_list): attr_added[path.pathString][shader_attr.GetName()] = shader_attr if not self._anchor_prim: return [] # remove uncommon keys anchor_path = self._anchor_prim.GetPath().pathString anchor_attr = attr_added[anchor_path] common_keys = anchor_attr.keys() for key in attr_added: if anchor_path != key: common_keys = common_keys & attr_added[key].keys() def compare_metadata(meta1, meta2) -> bool: ignored_metadata = {"default", "colorSpace"} for key, value in meta1.items(): if key not in ignored_metadata and (key not in meta2 or meta2[key] != value): return False for key, value in meta2.items(): if key not in ignored_metadata and (key not in meta1 or meta1[key] != value): return False return True # remove any keys that metadata's differ for key in copy.copy(list(common_keys)): attr1 = attr_added[anchor_path][key] for path in self._payload: if path == anchor_path: continue attr2 = attr_added[path.pathString][key] if not ( attr1.GetName() == attr2.GetName() and attr1.GetDisplayGroup() == attr2.GetDisplayGroup() and attr1.GetConnections() == attr2.GetConnections() and compare_metadata(attr1.GetAllMetadata(), attr2.GetAllMetadata()) and type(attr1) == type(attr2) ): common_keys.remove(key) break # add remaining common keys # use anchor_attr.keys() to keep the original order as common_keys order has changed for key in anchor_attr.keys(): if key not in common_keys: continue attr = anchor_attr[key] attrs.append( UsdPropertyUiEntry( attr.GetName(), attr.GetDisplayGroup(), attr.GetAllMetadata(), type(attr), prim_paths=self._shader_paths, )) if self._add_source_color_space_placeholder: attrs.append( UsdPropertyUiEntry( "inputs:sourceColorSpace", "UsdUVTexture", { Sdf.PrimSpec.TypeNameKey: "token", "allowedTokens": Vt.TokenArray(3, ("auto", "raw", "sRGB")), "customData": {"default": "auto"}, }, Usd.Attribute, ) ) # move inputs/outputs to own group for attr in attrs: if attr.attr_name and attr.attr_name in self._lookup_table: lookup = self._lookup_table[attr.attr_name] displayName = attr.metadata.get("displayName", None) if not displayName and lookup["name"]: attr.override_display_name(lookup["name"]) if not attr.display_group and lookup["group"]: attr.override_display_group(lookup["group"]) if not attr.display_group: if attr.prop_name.startswith("output"): attr.override_display_group("Outputs") elif attr.prop_name.startswith("inputs"): attr.override_display_group("Inputs") if attr.display_group == "UI Properties": if self._anchor_prim.IsA(UsdUI.Backdrop): attr.display_group_collapsed = False else: attr.display_group_collapsed = True elif attr.display_group in ["Outputs", "Material Flags"]: attr.display_group_collapsed = True #remove inputs: and outputs: prefixes from items w/o explicit display name metadata if Sdf.PropertySpec.DisplayNameKey not in attr.metadata: attr.metadata[Sdf.PropertySpec.DisplayNameKey] = attr.attr_name.split(":")[-1] # move groups to top... frame = CustomLayoutFrame(hide_extra=False) with frame: with CustomLayoutGroup("Info"): CustomLayoutProperty("info:implementationSource", "implementationSource") CustomLayoutProperty("info:mdl:sourceAsset", "mdl:sourceAsset") CustomLayoutProperty("info:mdl:sourceAsset:subIdentifier", "mdl:sourceAsset:subIdentifier") CustomLayoutProperty("info:id", "id") material_annotations = SubIdentifierUtils.get_annotations("description", prim, self._material_annotations) if material_annotations: with CustomLayoutGroup("Description", collapsed=True): CustomLayoutProperty(None, None, build_fn=lambda s, a, m, pt, pp, al, aw, mal=material_annotations: SubIdentifierUtils.annotations_build_fn(stage=s, attr_name=a, metadata=m, property_type=pt, prim_paths=pp, additional_label_kwargs=al, additional_widget_kwarg=aw, material_annotations=mal)) with CustomLayoutGroup("Outputs", collapsed=True): CustomLayoutProperty("outputs:mdl:surface", "mdl:surface") CustomLayoutProperty("outputs:mdl:displacement", "mdl:displacement") CustomLayoutProperty("outputs:mdl:volume", "mdl:volume") CustomLayoutProperty("outputs:surface", "surface") CustomLayoutProperty("outputs:displacement", "displacement") CustomLayoutProperty("outputs:volume", "volume") attrs = frame.apply(attrs) # move Outputs to last, anything appearing after needs adding to CustomLayout above def output_sort(attr): if attr.prop_name.startswith("output"): if attr.prop_name == "outputs:out": return 2 return 1 return 0 attrs.sort(key=output_sort) return attrs def build_property_item(self, stage, ui_attr: UsdPropertyUiEntry, prim_paths: List[Sdf.Path]): if ui_attr.prop_name == "info:mdl:sourceAsset:subIdentifier": if self._anchor_prim: attr = self._anchor_prim.GetAttribute(ui_attr.prop_name) material_annotations = None if attr: shader = UsdShade.Shader(self._anchor_prim) asset = shader.GetSourceAsset("mdl") if shader else None mdl_file = asset.resolvedPath if asset else None if mdl_file and mdl_file in self._material_annotations: material_annotations = self._material_annotations[mdl_file] model = SubIdentifierUtils.build_subidentifier( stage, attr_name=ui_attr.prop_name, type_name=ui_attr.property_type, metadata=ui_attr.metadata, attr=attr, prim_paths=prim_paths, ) return model return super().build_property_item(stage, ui_attr, prim_paths) def _on_usd_changed(self, notice, stage): if stage != self._payload.get_stage(): return if not self._collapsable_frame: return if len(self._payload) == 0: return # Widget is pending rebuild, no need to check for dirty if self._pending_rebuild_task is not None: return for path in notice.GetChangedInfoOnlyPaths(): if path.name.startswith("info:"): self.request_rebuild() return for path in notice.GetResyncedPaths(): if path in self._additional_paths or path in self._payload: self.request_rebuild() return elif ( path.GetPrimPath() in self._additional_paths or path.GetPrimPath() in self._shader_paths or path.GetPrimPath() in self._payload ): # If prop is added or removed, rebuild frame # TODO only check against the attributes this widget cares about if bool(stage.GetPropertyAtPath(path)) != bool(self._models.get(path)): self.request_rebuild() return else: # OM-75480: For material prim, it needs special treatment. So modifying shader prim # needs to refresh material prim widget also. # How to avoid accessing private variable of parent class? self._pending_dirty_paths.add(path) super()._on_usd_changed(notice=notice, stage=stage)
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/subIdentifier_utils.py
from typing import List from collections import defaultdict, OrderedDict from omni.kit.window.property.templates import SimplePropertyWidget, LABEL_WIDTH, LABEL_HEIGHT, HORIZONTAL_SPACING from omni.kit.property.usd.usd_property_widget import ( UsdPropertiesWidget, UsdPropertyUiEntry, UsdPropertiesWidgetBuilder, ) from omni.kit.property.usd.usd_attribute_model import UsdAttributeModel, TfTokenAttributeModel import asyncio import carb import omni.ui as ui import omni.usd from pxr import Usd, Tf, Vt, Sdf, UsdShade class SubIdentifierUtils: class AllowedAnnoItem(ui.AbstractItem): def __init__(self, item, token=None): from omni.kit.material.library import MaterialLibraryExtension super().__init__() if isinstance(item, MaterialLibraryExtension.SubIDEntry): if "subid_token" in item.annotations: self.token = item.annotations["subid_token"] else: self.token = item.name self.model = ui.SimpleStringModel(item.name) if "subid_display_name" in item.annotations: self.model = ui.SimpleStringModel(item.annotations['subid_display_name']) elif "display_name" in item.annotations: self.model = ui.SimpleStringModel(item.annotations['display_name']) else: self.model = ui.SimpleStringModel(item.name) else: if token: self.token = token self.model = ui.SimpleStringModel(item) else: self.token = item self.model = ui.SimpleStringModel(item) class SubIdentifierModel(TfTokenAttributeModel): def __init__( self, stage: Usd.Stage, attribute_paths: List[Sdf.Path], self_refresh: bool, metadata: dict, options: list, attr: Usd.Attribute, ): self._widget = None self._combobox_options = [attr.Get()] super().__init__(stage=stage, attribute_paths=attribute_paths, self_refresh=self_refresh, metadata=metadata) self._has_index = False async def load_subids(): await omni.kit.app.get_app().next_update_async() await omni.kit.material.library.get_subidentifier_from_material(prim=attr.GetPrim(), on_complete_fn=self._have_list, use_functions=True) asyncio.ensure_future(load_subids()) def _get_allowed_tokens(self, attr): return self._combobox_options def _update_allowed_token(self): super()._update_allowed_token(SubIdentifierUtils.AllowedAnnoItem) def _update_value(self, force=False): from omni.kit.property.usd.usd_model_base import UsdBase was_updating_value = self._updating_value self._updating_value = True if UsdBase._update_value(self, force): # TODO don't have to do this every time. Just needed when "allowedTokens" actually changed self._update_allowed_token() def find_allowed_token(value): # try to match the full token, i.e. simple name with function parameters for i in range(0, len(self._allowed_tokens)): if self._allowed_tokens[i].token == value: return i # if the above failed, drop the parameter list of the query # try to find a match based on the simple name alone # note, because of overloads there can be more than one match query = value.split("(", 1)[0] match_count = 0 first_match_index = -1 for i in range(0, len(self._allowed_tokens)): if self._allowed_tokens[i].token.split("(", 1)[0] == query: if match_count == 0: first_match_index = i match_count += 1 # if there is one match based on simple name, we can safely return this one if match_count == 1: return first_match_index # the match is not unique, we need to return a `<not found>` else: return -1 index = find_allowed_token(self._value) if self._value and index == -1: carb.log_warn(f"failed to find '{self._value}' in function name list") index = len(self._allowed_tokens) self._allowed_tokens.append(SubIdentifierUtils.AllowedAnnoItem(token=self._value, item=f"<sub-identifier not found: '{self._value}'>")) if index != -1 and self._current_index.as_int != index: self._current_index.set_value(index) self._item_changed(None) self._updating_value = was_updating_value def _have_list(self, mtl_list: list): if mtl_list: self._combobox_options = mtl_list self._set_dirty() if self._has_index is False: self._update_value() self._has_index = True def build_subidentifier( stage, attr_name, type_name, metadata, attr: Usd.Attribute, prim_paths: List[Sdf.Path], additional_label_kwargs=None, additional_widget_kwargs=None, ): with ui.HStack(spacing=HORIZONTAL_SPACING): model = None UsdPropertiesWidgetBuilder._create_label(attr_name, metadata, additional_label_kwargs) tokens = metadata.get("allowedTokens") if not tokens: tokens = [attr.Get()] model = SubIdentifierUtils.SubIdentifierModel( stage, attribute_paths=[path.AppendProperty(attr_name) for path in prim_paths], self_refresh=False, metadata=metadata, options=tokens, attr=attr, ) widget_kwargs = {"name": "choices", "no_default": True} if additional_widget_kwargs: widget_kwargs.update(additional_widget_kwargs) with ui.ZStack(): value_widget = ui.ComboBox(model, **widget_kwargs) value_widget.identifier = 'sdf_asset_info:mdl:sourceAsset:subIdentifier' mixed_overlay = UsdPropertiesWidgetBuilder._create_mixed_text_overlay() UsdPropertiesWidgetBuilder._create_control_state( model=model, value_widget=value_widget, mixed_overlay=mixed_overlay, **widget_kwargs ) return model def annotations_build_fn( stage, attr_name, metadata, property_type, prim_paths: List[Sdf.Path], additional_label_kwargs, additional_widget_kwarg, material_annotations ): additional_label_kwargs = {"width": ui.Fraction(1), "read_only": True} description = material_annotations["description"] description = description.replace("\n\r", "\r").replace("\n", "\r") description_list = description.split("\r") if len(description_list) > 1: with ui.VStack(spacing=2): for description in description_list: if not description: continue parts = description.split("\t", maxsplit=1) if len(parts) == 1: parts = description.split(" ", maxsplit=1) with ui.HStack(spacing=HORIZONTAL_SPACING): if len(parts) == 1: parts.append("") UsdPropertiesWidgetBuilder._create_label(parts[0]) if parts[1].startswith("http"): additional_label_kwargs["tooltip"] = f"Click to open \"{parts[1]}\"" else: additional_label_kwargs["tooltip"] = parts[1] UsdPropertiesWidgetBuilder._create_text_label(parts[1], additional_label_kwargs=additional_label_kwargs) else: with ui.HStack(spacing=HORIZONTAL_SPACING): UsdPropertiesWidgetBuilder._create_label("Description") additional_label_kwargs["tooltip"] = description UsdPropertiesWidgetBuilder._create_text_label(description, additional_label_kwargs=additional_label_kwargs) def get_annotations( annotation_key, prim, material_annotation_list, ): if prim.IsA(UsdShade.Material): shader = omni.usd.get_shader_from_material(prim, False) attr = shader.GetPrim().GetAttribute("info:mdl:sourceAsset:subIdentifier") if shader else None else: attr = prim.GetAttribute("info:mdl:sourceAsset:subIdentifier") if prim else None shader = UsdShade.Shader(prim) if attr: asset = shader.GetSourceAsset("mdl") if shader else None mdl_file = asset.resolvedPath if asset else None if mdl_file and mdl_file in material_annotation_list: material_annotations = material_annotation_list[mdl_file] if attr.Get() in material_annotations: material_annotations = material_annotations[attr.Get()] if annotation_key in material_annotations: return material_annotations return None
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/context_menu.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # import omni.kit.context_menu from typing import Set from pxr import Usd, Sdf, UsdShade material_clipboard = [] # menu functions.... def is_material_selected(objects): material_prim = objects["material_prim"] if material_prim: return True return False def is_multiple_material_selected(objects): selected_paths = omni.usd.get_context().get_selection().get_selected_prim_paths() mtl_list = [] for path in selected_paths: prim = objects["stage"].GetPrimAtPath(path) if not prim: return False bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() if bound_material and bound_material not in mtl_list: mtl_list.append(bound_material) return bool(len(mtl_list)>1) def is_material_copied(objects): return bool(len(material_clipboard) > 0) def is_bindable_prim_selected(objects): for prim_path in omni.usd.get_context().get_selection().get_selected_prim_paths(): prim = objects["stage"].GetPrimAtPath(prim_path) if prim and omni.usd.is_prim_material_supported(prim): return True return False def is_prim_selected(self, objects: dict): """ checks if any prims are selected """ if not any(item in objects for item in ["prim", "prim_list"]): return False return True def is_paste_all(objects): return bool(len(omni.usd.get_context().get_selection().get_selected_prim_paths()) > len(material_clipboard)) def goto_material(objects): material_prim = objects["material_prim"] if material_prim: omni.usd.get_context().get_selection().set_prim_path_selected(material_prim.GetPath().pathString, True, True, True, True) def copy_material(objects: dict, all: bool): global material_clipboard material_clipboard = [] for prim in objects["prim_list"]: mat, rel = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() material_path = mat.GetPath().pathString if mat else None material_strength = UsdShade.MaterialBindingAPI.GetMaterialBindingStrength(rel) if rel else UsdShade.Tokens.weakerThanDescendants material_clipboard.append((material_path, material_strength)) def paste_material(objects: dict): selected_paths = omni.usd.get_context().get_selection().get_selected_prim_paths() prims = [objects["stage"].GetPrimAtPath(p) for p in selected_paths] with omni.kit.undo.group(): max_paste = len(material_clipboard) for index, prim in enumerate(prims): if index >= max_paste: break material_path, material_strength = material_clipboard[index] if material_path: omni.kit.commands.execute( "BindMaterial", prim_path=prim.GetPath(), material_path=material_path, strength=material_strength, ) def paste_material_all(objects: dict): selected_paths = omni.usd.get_context().get_selection().get_selected_prim_paths() prims = [objects["stage"].GetPrimAtPath(p) for p in selected_paths] with omni.kit.undo.group(): max_paste = len(material_clipboard) for index, prim in enumerate(prims): material_path, material_strength = material_clipboard[index % max_paste] if material_path: omni.kit.commands.execute( "BindMaterial", prim_path=prim.GetPath(), material_path=material_path, strength=material_strength, ) def get_paste_name(objects): if len(material_clipboard) <2: return "Paste" return f"Paste ({len(material_clipboard)} Materials)" def show_context_menu(stage, material_path, bound_prims: Set[Usd.Prim]): # get context menu core functionality & check its enabled context_menu = omni.kit.context_menu.get_instance() if context_menu is None: carb.log_error("context_menu is disabled!") return None # setup objects, this is passed to all functions if not stage: return objects = {"material_prim": stage.GetPrimAtPath(material_path), "prim_list": bound_prims} # setup menu menu_dict = [ {"name": "Copy", "enabled_fn": [], "onclick_fn": lambda o: copy_material(o, False)}, {"name_fn": get_paste_name, "show_fn": [is_bindable_prim_selected, is_material_copied], "onclick_fn": paste_material}, {"name": "", "show_fn": is_material_selected}, {"name": "Select Material", "show_fn": is_material_selected, "onclick_fn": goto_material}, ] # show menu menu_dict += omni.kit.context_menu.get_menu_dict("MENU_THUMBNAIL", "") omni.kit.context_menu.reorder_menu_dict(menu_dict) context_menu.show_context_menu("material_thumbnail", objects, menu_dict)
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/usd_binding_widget.py
# Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # from omni.kit.window.property.templates import SimplePropertyWidget, LABEL_WIDTH, LABEL_HEIGHT from omni.kit.material.library.listbox_widget import MaterialListBoxWidget from omni.kit.material.library.thumbnail_loader import ThumbnailLoader from omni.kit.material.library.search_widget import SearchWidget from .material_utils import Constant, get_binding_from_prims from .context_menu import show_context_menu from typing import List, Set from functools import partial from pxr import Usd, Tf, Sdf, UsdShade import copy import os import weakref import asyncio import weakref import carb import omni.ui as ui import omni.usd import omni.kit.material.library import omni.kit.context_menu class UsdBindingAttributeWidget(SimplePropertyWidget): def __init__(self, extension_path, add_context_menu=False): super().__init__(title="Materials on selected models", collapsed=False) self._strengths = { "Weaker than Descendants": UsdShade.Tokens.weakerThanDescendants, "Stronger than Descendants": UsdShade.Tokens.strongerThanDescendants, } self._extension_path = extension_path self._thumbnail_loader = ThumbnailLoader() BUTTON_BACKGROUND_COLOR = 0xFF323434 GENERAL_BACKGROUND_COLOR = 0xFF1F2124 self._theme = carb.settings.get_settings().get_as_string("/persistent/app/window/uiStyle") or "NvidiaDark" if self._theme != "NvidiaDark": BUTTON_BACKGROUND_COLOR = 0xFF545454 GENERAL_BACKGROUND_COLOR = 0xFF545454 self._listbox_widget = None self._search_widget = SearchWidget(theme=self._theme, icon_path=None) self._style = { "Image::material": {"margin": 12}, "Button::material_mixed": {"margin": 10}, "Button.Image::material_mixed": {"image_url": f"{self._extension_path}/data/icons/[email protected]"}, "Button::material_solo": {"margin": 10}, "Button.Image::material_solo": {"image_url": f"{self._extension_path}/data/icons/[email protected]"}, "Field::prims" : {"font_size": Constant.FONT_SIZE}, "Field::prims_mixed" : {"font_size": Constant.FONT_SIZE, "color": Constant.MIXED_COLOR}, "Label::prim" : {"font_size": Constant.FONT_SIZE}, "ComboBox": {"font_size": Constant.FONT_SIZE}, "Label::combo_mixed": { "font_size": Constant.FONT_SIZE, "color": Constant.MIXED_COLOR, "margin_width": 5, }, } self._listener = None self._pending_frame_rebuild_task = None self._paste_all_menu = None if add_context_menu: # paste all on collapsible frame header from .context_menu import is_bindable_prim_selected, is_material_copied, is_paste_all, paste_material_all menu_dict = {"name": "Paste To All", "enabled_fn": [is_bindable_prim_selected, is_material_copied, is_paste_all], "onclick_fn": paste_material_all} self._paste_all_menu = omni.kit.context_menu.add_menu(menu_dict, "group_context_menu.Materials on selected models", "omni.kit.window.property") def clean(self): self._thumbnail_loader = None if self._listbox_widget: self._listbox_widget.clean() self._listbox_widget = None self._search_widget.clean() self._paste_all_menu = None super().clean() def _materials_changed(self): self.request_rebuild() def _get_prim(self, prim_path): if prim_path: stage = self._payload.get_stage() if stage: return stage.GetPrimAtPath(prim_path) return None def on_new_payload(self, payload): """ See PropertyWidget.on_new_payload """ if not super().on_new_payload(payload): return False if not payload: return False if len(payload) == 0: return False for prim_path in payload: prim = self._get_prim(prim_path) if prim and not omni.usd.is_prim_material_supported(prim): return False if not prim and not Usd.CollectionAPI.IsCollectionAPIPath(prim_path): return False return True def _get_index(self, items: List[str], value: str, default_value: int = 0): index = default_value try: index = items.index(value) except: pass return index def _get_theme_name(self, darkname, lightname): if self._theme=="NvidiaDark": return darkname return lightname def _show_material_popup(self, name_field: ui.StringField, material_index: int, bind_material_fn: callable): if self._listbox_widget: self._listbox_widget.clean() del self._listbox_widget self._listbox_widget = None self._listbox_widget = MaterialListBoxWidget(icon_path=None, index=material_index, on_click_fn=bind_material_fn, theme=self._theme) self._listbox_widget.set_parent(name_field) self._listbox_widget.set_selection_on_loading_complete(name_field.model.get_value_as_string() if material_index >= 0 else None) self._listbox_widget.build_ui() def _build_material_popup(self, material_list: List[str], material_index: int, thumbnail_image: ui.Button, bound_prim_list: Set[Usd.Prim], bind_material_fn: callable, on_goto_fn: callable, on_dragdrop_fn: callable): def drop_accept(url): if len(url.split('\n')) > 1: carb.log_warn(f"build_material_popup multifile drag/drop not supported") return False if url.startswith("material::"): return True url_ext = os.path.splitext(url)[1] return url_ext.lower() in [".mdl"] def dropped_mtl(event, bind_material_fn): url = event.mime_data subid = None # remove omni.kit.browser.material "material::" prefix if url.startswith("material::"): url=url[10:] parts = url.split(".mdl@") if len(parts) == 2: subid = parts[1] url = url.replace(f".mdl@{subid}", ".mdl") bind_material_fn(url=url, subid=subid) name_field, listbox_button, goto_button = self._search_widget.build_ui_popup(search_size=LABEL_HEIGHT, popup_text=material_list[material_index] if material_index >= 0 else "Mixed", index=material_index, update_fn=bind_material_fn) name_field.set_mouse_pressed_fn(lambda x, y, b, m, f=name_field: self._show_material_popup(f, material_index, bind_material_fn)) name_field.set_accept_drop_fn(drop_accept) name_field.set_drop_fn(partial(dropped_mtl, bind_material_fn=on_dragdrop_fn)) listbox_button.set_mouse_pressed_fn(lambda x, y, b, m, f=name_field: self._show_material_popup(f, material_index, bind_material_fn)) if material_index > 0: goto_button.set_mouse_pressed_fn(lambda x, y, b, m, f=name_field: on_goto_fn(f.model)) if self._collapsable_frame: def mouse_clicked(b, f): if b == 0: on_goto_fn(f.model) elif b == 1: show_context_menu(self._payload.get_stage(), f.model.get_value_as_string(), bound_prim_list) thumbnail_image.set_mouse_pressed_fn(lambda x, y, b, m, f=name_field: mouse_clicked(b, f)) thumbnail_image.set_accept_drop_fn(drop_accept) thumbnail_image.set_drop_fn(partial(dropped_mtl, bind_material_fn=on_dragdrop_fn)) def _build_combo(self, material_list: List[str], material_index: int, on_fn: callable): def set_visible(widget, visible): widget.visible = visible with ui.ZStack(): combo = ui.ComboBox(material_index, *material_list) combo.model.add_item_changed_fn(on_fn) if material_index == -1: placeholder = ui.Label( "Mixed", height=LABEL_HEIGHT, name="combo_mixed", ) self._combo_subscription.append( combo.model.get_item_value_model().subscribe_value_changed_fn( lambda m, w=placeholder: set_visible(w, m.as_int < 0) ) ) return combo def _build_binding_info( self, inherited: bool, style_name: str, material_list: List[str], material_path: str, strength_value: str, bound_prim_list: Set[str], on_material_fn: callable, on_strength_fn: callable, on_goto_fn: callable, on_dragdrop_fn: callable, ): prim_style = "prims" ## fixup Constant.SDF_PATH_INVALID vs "None" material_list = copy.copy(material_list) if material_list[0] == Constant.SDF_PATH_INVALID: material_list[0] = "None" if material_path == Constant.SDF_PATH_INVALID: material_path = "None" type_label = 'Prim' if len(bound_prim_list) == 1: if isinstance(bound_prim_list[0], Usd.Prim): bound_prims = bound_prim_list[0].GetPath().pathString elif isinstance(bound_prim_list[0], Usd.CollectionAPI): bound_prims = bound_prim_list[0].GetCollectionPath().pathString type_label = 'Collection' else: bound_prims = bound_prim_list[0] elif len(bound_prim_list) > 1: bound_prims = Constant.MIXED prim_style = "prims_mixed" else: bound_prims = "None" if not self._first_row: ui.Separator(height=10) self._first_row = False index = self._get_index(material_list, material_path, -1) with ui.HStack(style=self._style): with ui.ZStack(width=0): image_button = ui.Button( "", width=Constant.ICON_SIZE, height=Constant.ICON_SIZE, fill_policy=ui.FillPolicy.PRESERVE_ASPECT_FIT, name=style_name, identifier="preview_drop_target" ) if index != -1: material_prim = self._get_prim(material_path) if material_prim: def on_image_progress(button: ui.Button, image: ui.Image, progress: float): if progress > 0.999: button.image_url = image.source_url image.visible = False thumbnail_image = ui.Image( width=Constant.ICON_SIZE, height=Constant.ICON_SIZE, fill_policy=ui.FillPolicy.PRESERVE_ASPECT_FIT, name="material" ) self._thumbnail_loader.load(material_prim, thumbnail_image) # callback when image is loading thumbnail_image.set_progress_changed_fn(lambda p, b=image_button, i=thumbnail_image: on_image_progress(b, i, p)) with ui.VStack(spacing=10): with ui.HStack(): ui.Label( type_label, width=Constant.BOUND_LABEL_WIDTH, height=LABEL_HEIGHT, name="prim", ) ui.StringField(name=prim_style, height=LABEL_HEIGHT, enabled=False).model.set_value( bound_prims ) if index != -1 and inherited: inherited_list = copy.copy(material_list) inherited_list[index] = f"{inherited_list[index]} (inherited)" self._build_material_popup(inherited_list, index, image_button, bound_prim_list, on_material_fn, on_goto_fn, on_dragdrop_fn) else: self._build_material_popup(material_list, index, image_button, bound_prim_list, on_material_fn, on_goto_fn, on_dragdrop_fn) with ui.HStack(): ui.Label( "Strength", width=Constant.BOUND_LABEL_WIDTH, height=LABEL_HEIGHT, name="prim", ) index = self._get_index(list(self._strengths.values()), strength_value, -1) self._build_combo(list(self._strengths.keys()), index, on_strength_fn) def build_items(self): binding = get_binding_from_prims(self._payload.get_stage(), self._payload) if binding is None: return strengths = self._strengths material_list = [Constant.SDF_PATH_INVALID] + [mtl for mtl in binding["material"]] stage = self._payload.get_stage() if not stage or len(self._payload) == 0: return last_prim = self._get_prim(self._payload[-1]) if not self._listener: self._listener = Tf.Notice.Register(Usd.Notice.ObjectsChanged, self._on_usd_changed, stage) def bind_material_to_prims(bind_material_path, items): prim_path_list = [] strength_list = [] for prim_path, material_name, strength in items: if str(material_name) != str(bind_material_path): prim_path_list.append(prim_path) strength_list.append(strength) if str(bind_material_path) == Constant.SDF_PATH_INVALID: bind_material_path = None omni.kit.commands.execute( "BindMaterial", material_path=bind_material_path, prim_path=prim_path_list, strength=strength_list, ) def on_strength_changed(model, item, relationships): index = model.get_item_value_model().as_int if index < 0: carb.log_error(f"on_strength_changed with invalid index {index}") return bind_strength = list(strengths.values())[index] omni.kit.undo.begin_group() for relationship in relationships: omni.kit.commands.execute("SetMaterialStrength", rel=relationship, strength=bind_strength) omni.kit.undo.end_group() if self._collapsable_frame: self._collapsable_frame.rebuild() def on_material_changed(model, item, items): if isinstance(model, omni.ui._ui.AbstractItemModel): index = model.get_item_value_model().as_int if index < 0: carb.log_error(f"on_material_changed with invalid index {index}") return bind_material_path = material_list[index] if material_list[index] != Constant.SDF_PATH_INVALID else None elif isinstance(model, omni.ui._ui.SimpleStringModel): bind_material_path = model.get_value_as_string() if bind_material_path == "None": bind_material_path = None else: carb.log_error(f"on_material_changed model {type(model)} unsupported") return bind_material_to_prims(bind_material_path, items) if self._collapsable_frame: self._collapsable_frame.rebuild() def on_dragdrop(url, items, subid=""): if len(url.split('\n')) > 1: carb.log_warn(f"build_binding_info multifile drag/drop not supported") return def on_create_func(mtl_prim): bind_material_to_prims(mtl_prim.GetPath(), items) if self._collapsable_frame: self._collapsable_frame.rebuild() def reload_frame(prim): self._materials_changed() stage = self._payload.get_stage() mtl_name, _ = os.path.splitext(os.path.basename(url)) def loaded_mdl_subids(mtl_list, mdl_path, filename, subid): if not mtl_list: return if subid: omni.kit.material.library.create_mdl_material( stage=stage, mtl_url=mdl_path, mtl_name=subid, on_create_fn=on_create_func, mtl_real_name=subid) return if len(mtl_list) > 1: prim_paths = [prim_path for prim_path, material_name, strength in items] omni.kit.material.library.custom_material_dialog(mdl_path=mdl_path, bind_prim_paths=prim_paths, on_complete_fn=reload_frame) return omni.kit.material.library.create_mdl_material( stage=stage, mtl_url=mdl_path, mtl_name=mtl_name, on_create_fn=on_create_func, mtl_real_name=mtl_list[0].name if len(mtl_list) > 0 else "") # get subids from material asyncio.ensure_future(omni.kit.material.library.get_subidentifier_from_mdl(mdl_file=url, on_complete_fn=lambda l, p=url, n=mtl_name: loaded_mdl_subids(mtl_list=l, mdl_path=p, filename=n, subid=subid), show_alert=True)) def on_material_goto(model, items): prim_list = sorted(list(set([item[1] for item in items if item[1] != Constant.SDF_PATH_INVALID]))) if prim_list: omni.usd.get_context().get_selection().set_selected_prim_paths(prim_list, True) else: carb.log_warn(f"on_material_goto failed. No materials in list") self._combo_subscription = [] self._first_row = True data = binding["material"] # show mixed material for all selected prims if len(data) > 1: self._build_binding_info( inherited=False, style_name="material_mixed", material_list=material_list, material_path=Constant.MIXED, strength_value=binding["strength"], bound_prim_list=list(binding["bound"]), on_material_fn=partial(on_material_changed, items=list(binding["bound_info"])), on_strength_fn=partial(on_strength_changed, relationships=list(binding["relationship"])), on_goto_fn=partial(on_material_goto, items=list(binding["bound_info"] | binding["inherited_info"])), on_dragdrop_fn=partial(on_dragdrop, items=list(binding["bound_info"])), ) for material_path in data: if data[material_path]["bound"]: self._build_binding_info( inherited=False, style_name="material_solo", material_list=material_list, material_path=material_path, strength_value=data[material_path]["strength"], bound_prim_list=list(data[material_path]["bound"]), on_material_fn=partial(on_material_changed, items=list(data[material_path]["bound_info"])), on_strength_fn=partial( on_strength_changed, relationships=list(data[material_path]["relationship"]) ), on_goto_fn=partial(on_material_goto, items=list(data[material_path]["bound_info"])), on_dragdrop_fn=partial(on_dragdrop, items=list(data[material_path]["bound_info"])), ) for material_path in data: if data[material_path]["inherited"]: self._build_binding_info( inherited=True, style_name="material_solo", material_list=material_list, material_path=material_path, strength_value=data[material_path]["strength"], bound_prim_list=list(data[material_path]["inherited"]), on_material_fn=partial(on_material_changed, items=list(data[material_path]["inherited_info"])), on_strength_fn=partial( on_strength_changed, relationships=list(data[material_path]["relationship"]) ), on_goto_fn=partial(on_material_goto, items=list(data[material_path]["inherited_info"])), on_dragdrop_fn=partial(on_dragdrop, items=list(data[material_path]["inherited_info"])), ) def reset(self): if self._listener: self._listener.Revoke() self._listener = None if self._pending_frame_rebuild_task: self._pending_frame_rebuild_task.cancel() self._pending_frame_rebuild_task = None def _on_usd_changed(self, notice, stage): if self._pending_frame_rebuild_task: return items = set(notice.GetResyncedPaths()+notice.GetChangedInfoOnlyPaths()) if any(path.elementString == ".material:binding" for path in items): async def rebuild(): if self._collapsable_frame: self._collapsable_frame.rebuild() self._pending_frame_rebuild_task = None self._pending_frame_rebuild_task = asyncio.ensure_future(rebuild())
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/scripts/material_properties.py
import os import carb import omni.ext from pathlib import Path from pxr import Sdf, UsdShade, UsdUI from omni.kit.material.library.treeview_model import MaterialListModel, MaterialListDelegate TEST_DATA_PATH = "" class MaterialPropertyExtension(omni.ext.IExt): def __init__(self): self._registered = False def on_startup(self, ext_id): self._extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path(ext_id) self._register_widget() self._hooks = [] manager = omni.kit.app.get_app().get_extension_manager() extension_path = manager.get_extension_path(ext_id) global TEST_DATA_PATH TEST_DATA_PATH = Path(extension_path).joinpath("data").joinpath("tests") def on_shutdown(self): self._hooks = None if self._registered: self._unregister_widget() def _register_widget(self): import omni.kit.window.property as p from omni.kit.window.property.property_scheme_delegate import PropertySchemeDelegate from .usd_attribute_widget import UsdMaterialAttributeWidget from .usd_binding_widget import UsdBindingAttributeWidget w = p.get_window() if w: w.register_widget("prim", "material_binding", UsdBindingAttributeWidget(self._extension_path, add_context_menu=True)) w.register_widget( "prim", "material", UsdMaterialAttributeWidget( schema=UsdShade.Material, title="Material and Shader", include_names=[], exclude_names=[]) ) w.register_widget( "prim", "shader", UsdMaterialAttributeWidget( schema=UsdShade.Shader, title="Shader", include_names=["info:mdl:sourceAsset", "info:mdl:sourceAsset:subIdentifier"], exclude_names=[], ), ) # NOTE: UsdShade.Material is also a UsdShade.NodeGraph. So NodeGraphs ignore Material's w.register_widget( "prim", "nodegraph", UsdMaterialAttributeWidget( schema=UsdShade.NodeGraph, schema_ignore=UsdShade.Material, title="Node Graph", include_names=[ "ui:nodegraph:node:displayColor", "ui:nodegraph:node:expansionState", "ui:nodegraph:node:icon", "ui:nodegraph:node:pos", "ui:nodegraph:node:stackingOrder", "ui:nodegraph:node:size"], exclude_names=[], ), ) w.register_widget( "prim", "backdrop", UsdMaterialAttributeWidget( schema=UsdUI.Backdrop, title="Backdrop", include_names=[ "ui:nodegraph:node:displayColor", "ui:nodegraph:node:expansionState", "ui:nodegraph:node:icon", "ui:nodegraph:node:pos", "ui:nodegraph:node:stackingOrder", "ui:nodegraph:node:size"], exclude_names=[], ), ) self._registered = True def _unregister_widget(self): import omni.kit.window.property as p w = p.get_window() if w: w.unregister_widget("prim", "material") w.unregister_widget("prim", "shader") w.unregister_widget("prim", "nodegraph") w.unregister_widget("prim", "backdrop") w.unregister_widget("prim", "material_binding") self._registered = False
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_drag_drop.py
import omni.kit.test from pathlib import Path from pxr import Sdf, UsdShade, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import select_prims, arrange_windows from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class TestDragDropMDLFile(OmniUiTest): async def test_drag_drop_single_mdl_file_target(self): await arrange_windows() extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) mdl_path1 = Path(extension_path).joinpath("data/tests/TESTEXPORT.mdl").absolute() # setup await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/Sphere"]) await ui_test.human_delay() # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await content_browser_helper.drag_and_drop_tree_view(str(mdl_path1), drag_target=property_widget.center) # verify - TESTEXPORT should be bound # NOTE: TESTEXPORT.mdl material is named "Material" so that is the prim created prim = stage.GetPrimAtPath("/Sphere") bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/Looks/Material") async def test_drag_drop_multi_mdl_file_target(self): extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) mdl_path = str(Path(extension_path).joinpath("data/tests").absolute()) # setup await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/Sphere"]) await ui_test.human_delay() # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await content_browser_helper.drag_and_drop_tree_view( mdl_path, names=["TESTEXPORT.mdl", "TESTEXPORT2.mdl"], drag_target=property_widget.center) # verify - nothing should be bound as 2 items where selected prim = stage.GetPrimAtPath("/Sphere") bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) async def test_drag_drop_single_mdl_file_combo(self): extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) mdl_path1 = Path(extension_path).joinpath("data/tests/TESTEXPORT.mdl").absolute() # setup await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/Sphere"]) await ui_test.human_delay() # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'") await content_browser_helper.drag_and_drop_tree_view(str(mdl_path1), drag_target=property_widget.center) # verify - TESTEXPORT should be bound # NOTE: TESTEXPORT.mdl material is named "Material" so that is the prim created prim = stage.GetPrimAtPath("/Sphere") bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/Looks/Material") async def test_drag_drop_multi_mdl_file_combo(self): extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) mdl_path = str(Path(extension_path).joinpath("data/tests").absolute()) # setup await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/Sphere"]) await ui_test.human_delay() # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'") await content_browser_helper.drag_and_drop_tree_view( mdl_path, names=["TESTEXPORT.mdl", "TESTEXPORT2.mdl"], drag_target=property_widget.center) # verify - nothing should be bound as 2 items where selected prim = stage.GetPrimAtPath("/Sphere") bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid())
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_material_thumb.py
import weakref import unittest import pathlib import omni.kit.test import omni.ui as ui import carb from pathlib import Path from pxr import Sdf, UsdShade, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, arrange_windows, select_prims, wait_stage_loading, ) class TestMaterialThumb(OmniUiTest): async def setUp(self): await super().setUp() await open_stage(get_test_data_path(__name__, "thumbnail_test.usda")) await wait_stage_loading() from omni.kit.property.usd.usd_attribute_widget import UsdPropertiesWidget import omni.kit.window.property as p self._w = p.get_window() async def tearDown(self): await super().tearDown() await wait_stage_loading() async def test_material_thumb(self): stage = omni.usd.get_context().get_stage() golden_img_dir = pathlib.Path(get_test_data_path(__name__, "golden_img")) await self.docked_test_window( window=self._w._window, width=450, height=285, restore_window = ui.Workspace.get_window("Layer") or ui.Workspace.get_window("Stage"), restore_position = ui.DockPosition.BOTTOM) # select source prim await select_prims(["/World/Sphere"]) await wait_stage_loading() await ui_test.human_delay(50) await self.finalize_test(golden_img_dir=golden_img_dir, golden_img_name="test_thumb_with_alpha.png") await select_prims([])
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/drag_drop_path.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import os import omni.kit.app import omni.usd import carb from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.material.library.test_helper import MaterialLibraryTestHelper from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, select_prims, wait_stage_loading, arrange_windows ) from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper PERSISTENT_SETTINGS_PREFIX = "/persistent" class DragDropFilePropertyMaterialPath(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows("Stage", 64) await open_stage(get_test_data_path(__name__, "bound_material.usda")) # After running each test async def tearDown(self): await wait_stage_loading() carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") async def test_l1_drag_drop_path_drop_target_absolute(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertTrue(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_combo_absolute(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertTrue(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_asset_absolute(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") usd_context = omni.usd.get_context() stage = usd_context.get_stage() await select_prims(["/World/Looks/OmniHair/Shader"]) await wait_stage_loading() # drag file from content window property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='sdf_asset_info:mdl:sourceAsset'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/OmniHairTest.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/OmniHair'), False) asset = shader.GetSourceAsset("mdl") self.assertTrue(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_drop_target_relative(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "relative") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertFalse(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_combo_relative(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "relative") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/badname.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/Ue4basedMDL'), False) self.assertTrue(bool(shader), "/World/Looks/Ue4basedMDL not found") asset = shader.GetSourceAsset("mdl") self.assertFalse(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_asset_relative(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "relative") usd_context = omni.usd.get_context() stage = usd_context.get_stage() await select_prims(["/World/Looks/OmniHair/Shader"]) await wait_stage_loading() # drag file from content window property_widget = ui_test.find("Property//Frame/**/StringField[*].identifier=='sdf_asset_info:mdl:sourceAsset'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/OmniHairTest.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/OmniHair'), False) asset = shader.GetSourceAsset("mdl") self.assertFalse(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_drop_target_multi_absolute(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "absolute") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/multi_hair.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) async with MaterialLibraryTestHelper() as material_test_helper: await material_test_helper.handle_create_material_dialog(str(mdl_path), "OmniHair_Green") # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/OmniHair_Green'), False) self.assertTrue(bool(shader), "/World/Looks/OmniHair_Green not found") asset = shader.GetSourceAsset("mdl") self.assertTrue(os.path.isabs(asset.path)) async def test_l1_drag_drop_path_drop_target_multi_relative(self): carb.settings.get_settings().set(PERSISTENT_SETTINGS_PREFIX + "/app/material/dragDropMaterialPath", "relative") await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/World/Sphere"]) await ui_test.human_delay() # drag file from content window property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") drag_target = property_widget.center async with ContentBrowserTestHelper() as content_browser_helper: mdl_path = get_test_data_path(__name__, "mtl/multi_hair.mdl") await content_browser_helper.drag_and_drop_tree_view(mdl_path, drag_target=drag_target) async with MaterialLibraryTestHelper() as material_test_helper: await material_test_helper.handle_create_material_dialog(str(mdl_path), "OmniHair_Green") # verify prims shader = omni.usd.get_shader_from_material(stage.GetPrimAtPath('/World/Looks/OmniHair_Green'), False) self.assertTrue(bool(shader), "/World/Looks/OmniHair_Green not found") asset = shader.GetSourceAsset("mdl") self.assertFalse(os.path.isabs(asset.path))
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/create_prims.py
import os import carb import carb.settings import omni.kit.commands from pxr import Usd, Sdf, UsdGeom, Gf, Tf, UsdShade, UsdLux def create_test_stage(): created_mdl_prims = [] created_bound_prims = [] stage = omni.usd.get_context().get_stage() rootname = "" if stage.HasDefaultPrim(): rootname = stage.GetDefaultPrim().GetPath().pathString kit_folder = carb.tokens.get_tokens_interface().resolve("${kit}") omni_pbr_mtl = os.path.normpath(kit_folder + "/mdl/core/Base/OmniPBR.mdl") # create Looks folder omni.kit.commands.execute( "CreatePrim", prim_path="{}/Looks".format(rootname), prim_type="Scope", select_new_prim=False ) # create GroundMat material mtl_name = "GroundMat" mtl_path = omni.usd.get_stage_next_free_path( stage, "{}/Looks/{}".format(rootname, Tf.MakeValidIdentifier(mtl_name)), False ) created_mdl_prims.append(mtl_path) omni.kit.commands.execute( "CreateMdlMaterialPrim", mtl_url=omni_pbr_mtl, mtl_name=mtl_name, mtl_path=mtl_path ) ground_mat_prim = stage.GetPrimAtPath(mtl_path) shader = UsdShade.Material(ground_mat_prim).ComputeSurfaceSource("mdl")[0] shader.SetSourceAssetSubIdentifier("OmniPBR", "mdl") omni.usd.create_material_input(ground_mat_prim, "reflection_roughness_constant", 0.36, Sdf.ValueTypeNames.Float) omni.usd.create_material_input(ground_mat_prim, "specular_level", 0.25, Sdf.ValueTypeNames.Float) omni.usd.create_material_input( ground_mat_prim, "diffuse_color_constant", Gf.Vec3f(0.08, 0.08, 0.08), Sdf.ValueTypeNames.Color3f ) omni.usd.create_material_input(ground_mat_prim, "diffuse_tint", Gf.Vec3f(1, 1, 1), Sdf.ValueTypeNames.Color3f) omni.usd.create_material_input(ground_mat_prim, "diffuse_tint", Gf.Vec3f(1, 1, 1), Sdf.ValueTypeNames.Color3f) omni.usd.create_material_input(ground_mat_prim, "metallic_constant", 0.0, Sdf.ValueTypeNames.Float) omni.usd.create_material_input(ground_mat_prim, "reflection_roughness_constant", 0.36, Sdf.ValueTypeNames.Float) # create BackSideMat mtl_name = "BackSideMat" backside_mtl_path = omni.usd.get_stage_next_free_path( stage, "{}/Looks/{}".format(rootname, Tf.MakeValidIdentifier(mtl_name)), False ) created_mdl_prims.append(backside_mtl_path) omni.kit.commands.execute( "CreateMdlMaterialPrim", mtl_url=omni_pbr_mtl, mtl_name=mtl_name, mtl_path=backside_mtl_path ) backside_mtl_prim = stage.GetPrimAtPath(backside_mtl_path) shader = UsdShade.Material(backside_mtl_prim).ComputeSurfaceSource("mdl")[0] shader.SetSourceAssetSubIdentifier("OmniPBR", "mdl") omni.usd.create_material_input( backside_mtl_prim, "diffuse_color_constant", Gf.Vec3f(0.11814344, 0.118142255, 0.118142255), Sdf.ValueTypeNames.Color3f, ) omni.usd.create_material_input(backside_mtl_prim, "reflection_roughness_constant", 0.27, Sdf.ValueTypeNames.Float) omni.usd.create_material_input(backside_mtl_prim, "specular_level", 0.163, Sdf.ValueTypeNames.Float) # create EmissiveMat mtl_name = "EmissiveMat" emissive_mtl_path = omni.usd.get_stage_next_free_path( stage, "{}/Looks/{}".format(rootname, Tf.MakeValidIdentifier(mtl_name)), False ) created_mdl_prims.append(emissive_mtl_path) omni.kit.commands.execute( "CreateMdlMaterialPrim", mtl_url=omni_pbr_mtl, mtl_name=mtl_name, mtl_path=emissive_mtl_path ) emissive_mtl_prim = stage.GetPrimAtPath(emissive_mtl_path) shader = UsdShade.Material(emissive_mtl_prim).ComputeSurfaceSource("mdl")[0] shader.SetSourceAssetSubIdentifier("OmniPBR", "mdl") omni.usd.create_material_input( emissive_mtl_prim, "diffuse_color_constant", Gf.Vec3f(0, 0, 0), Sdf.ValueTypeNames.Color3f ) omni.usd.create_material_input(emissive_mtl_prim, "reflection_roughness_constant", 1, Sdf.ValueTypeNames.Float) omni.usd.create_material_input(emissive_mtl_prim, "specular_level", 0, Sdf.ValueTypeNames.Float) omni.usd.create_material_input(emissive_mtl_prim, "enable_emission", True, Sdf.ValueTypeNames.Bool) omni.usd.create_material_input(emissive_mtl_prim, "emissive_color", Gf.Vec3f(1, 1, 1), Sdf.ValueTypeNames.Color3f) omni.usd.create_material_input(emissive_mtl_prim, "emissive_intensity", 15000, Sdf.ValueTypeNames.Float) # create studiohemisphere hemisphere_path = omni.usd.get_stage_next_free_path(stage, "{}/studiohemisphere".format(rootname), False) omni.kit.commands.execute( "CreatePrim", prim_path=hemisphere_path, prim_type="Xform", select_new_prim=False, attributes={} ) hemisphere_prim = stage.GetPrimAtPath(hemisphere_path) UsdGeom.PrimvarsAPI(hemisphere_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # create sphere hemisphere_sphere_path = omni.usd.get_stage_next_free_path( stage, "{}/studiohemisphere/Sphere".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=hemisphere_sphere_path, prim_type="Sphere", select_new_prim=False, attributes={UsdGeom.Tokens.radius: 100}, ) hemisphere_prim = stage.GetPrimAtPath(hemisphere_sphere_path) # set transform hemisphere_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(2500, 2500, 2500)) hemisphere_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set(["xformOp:scale"]) UsdGeom.PrimvarsAPI(hemisphere_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=hemisphere_sphere_path, material_path=mtl_path, strength=UsdShade.Tokens.strongerThanDescendants, ) created_bound_prims.append((hemisphere_sphere_path, UsdShade.Tokens.strongerThanDescendants)) # create floor hemisphere_floor_path = omni.usd.get_stage_next_free_path( stage, "{}/studiohemisphere/Floor".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=hemisphere_floor_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100}, ) hemisphere_floor_prim = stage.GetPrimAtPath(hemisphere_floor_path) # set transform hemisphere_floor_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(2500, 0.1, 2500) ) hemisphere_floor_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set(["xformOp:scale"]) UsdGeom.PrimvarsAPI(hemisphere_floor_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=hemisphere_floor_path, material_path=mtl_path, strength=UsdShade.Tokens.weakerThanDescendants, ) created_bound_prims.append((hemisphere_floor_path, UsdShade.Tokens.weakerThanDescendants)) # create LightPivot_01 light_pivot1_path = omni.usd.get_stage_next_free_path(stage, "{}/LightPivot_01".format(rootname), False) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot1_path, prim_type="Xform", select_new_prim=False, attributes={} ) light_pivot1_prim = stage.GetPrimAtPath(light_pivot1_path) UsdGeom.PrimvarsAPI(light_pivot1_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # set transform light_pivot1_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) light_pivot1_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(-30.453436397207547, 16.954190666353664, 9.728788165428536) ) light_pivot1_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0.9999999445969171, 1.000000574567198, 0.9999995086845976) ) light_pivot1_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) # create AreaLight light_pivot1_al_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_01/AreaLight".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot1_al_path, prim_type="Xform", select_new_prim=False, attributes={} ) light_pivot1_al_prim = stage.GetPrimAtPath(light_pivot1_al_path) UsdGeom.PrimvarsAPI(light_pivot1_al_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # set transform light_pivot1_al_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0, 0, 800) ) light_pivot1_al_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) light_pivot1_al_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(4.5, 4.5, 4.5) ) light_pivot1_al_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) # create AreaLight RectLight light_pivot1_alrl_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_01/AreaLight/RectLight".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot1_alrl_path, prim_type="RectLight", select_new_prim=False, attributes={}, ) light_pivot1_alrl_prim = stage.GetPrimAtPath(light_pivot1_alrl_path) # set values light_pivot1_alrl_prim.CreateAttribute("height", Sdf.ValueTypeNames.Float, False).Set(100) light_pivot1_alrl_prim.CreateAttribute("width", Sdf.ValueTypeNames.Float, False).Set(100) light_pivot1_alrl_prim.CreateAttribute("intensity", Sdf.ValueTypeNames.Float, False).Set(15000) light_pivot1_alrl_prim.CreateAttribute("shaping:cone:angle", Sdf.ValueTypeNames.Float, False).Set(180) # create AreaLight Backside backside_albs_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_01/AreaLight/Backside".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=backside_albs_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100, UsdGeom.Tokens.extent: [(-50, -50, -50), (50, 50, 50)]}, ) backside_albs_prim = stage.GetPrimAtPath(backside_albs_path) # set values backside_albs_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 1.1)) backside_albs_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) backside_albs_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(1, 1, 0.02)) backside_albs_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) UsdGeom.PrimvarsAPI(backside_albs_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=backside_albs_path, material_path=backside_mtl_path, strength=UsdShade.Tokens.strongerThanDescendants, ) created_bound_prims.append((backside_albs_path, UsdShade.Tokens.strongerThanDescendants)) # create AreaLight EmissiveSurface backside_ales_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_01/AreaLight/EmissiveSurface".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=backside_ales_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100, UsdGeom.Tokens.extent: [(-50, -50, -50), (50, 50, 50)]}, ) backside_ales_prim = stage.GetPrimAtPath(backside_ales_path) # set values backside_ales_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0, 0, 0.002) ) backside_ales_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) backside_ales_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(1, 1, 0.02)) backside_ales_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) UsdGeom.PrimvarsAPI(backside_ales_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=backside_ales_path, material_path=emissive_mtl_path, strength=UsdShade.Tokens.weakerThanDescendants, ) created_bound_prims.append((backside_ales_path, UsdShade.Tokens.weakerThanDescendants)) # create LightPivot_02 light_pivot2_path = omni.usd.get_stage_next_free_path(stage, "{}/LightPivot_02".format(rootname), False) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot2_path, prim_type="Xform", select_new_prim=False, attributes={} ) light_pivot2_prim = stage.GetPrimAtPath(light_pivot2_path) UsdGeom.PrimvarsAPI(light_pivot2_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # set transform light_pivot2_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) light_pivot2_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(-149.8694695859529, 35.87684189578612, -18.78499937937383) ) light_pivot2_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0.9999999347425043, 0.9999995656418647, 1.0000001493100235) ) light_pivot2_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) # create AreaLight light_pivot2_al_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_02/AreaLight".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot2_al_path, prim_type="Xform", select_new_prim=False, attributes={} ) light_pivot2_al_prim = stage.GetPrimAtPath(light_pivot2_al_path) UsdGeom.PrimvarsAPI(light_pivot2_al_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # set transform light_pivot2_al_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0, 0, 800) ) light_pivot2_al_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) light_pivot2_al_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(1.5, 1.5, 1.5) ) light_pivot2_al_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) # create AreaLight RectLight light_pivot2_alrl_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_02/AreaLight/RectLight".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=light_pivot2_alrl_path, prim_type="RectLight", select_new_prim=False, attributes={}, ) light_pivot2_alrl_prim = stage.GetPrimAtPath(light_pivot2_alrl_path) # set values light_pivot2_alrl_prim.CreateAttribute("height", Sdf.ValueTypeNames.Float, False).Set(100) light_pivot2_alrl_prim.CreateAttribute("width", Sdf.ValueTypeNames.Float, False).Set(100) light_pivot2_alrl_prim.CreateAttribute("intensity", Sdf.ValueTypeNames.Float, False).Set(55000) light_pivot2_alrl_prim.CreateAttribute("shaping:cone:angle", Sdf.ValueTypeNames.Float, False).Set(180) # create AreaLight Backside backside_albs_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_02/AreaLight/Backside".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=backside_albs_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100, UsdGeom.Tokens.extent: [(-50, -50, -50), (50, 50, 50)]}, ) backside_albs_prim = stage.GetPrimAtPath(backside_albs_path) # set values backside_albs_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 1.1)) backside_albs_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) backside_albs_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(1, 1, 0.02)) backside_albs_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) UsdGeom.PrimvarsAPI(backside_albs_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=backside_albs_path, material_path=backside_mtl_path, strength=UsdShade.Tokens.strongerThanDescendants, ) created_bound_prims.append((backside_albs_path, UsdShade.Tokens.strongerThanDescendants)) # create AreaLight EmissiveSurface backside_ales_path = omni.usd.get_stage_next_free_path( stage, "{}/LightPivot_02/AreaLight/EmissiveSurface".format(rootname), False ) omni.kit.commands.execute( "CreatePrim", prim_path=backside_ales_path, prim_type="Cube", select_new_prim=False, attributes={UsdGeom.Tokens.size: 100, UsdGeom.Tokens.extent: [(-50, -50, -50), (50, 50, 50)]}, ) backside_ales_prim = stage.GetPrimAtPath(backside_ales_path) # set values backside_ales_prim.CreateAttribute("xformOp:translate", Sdf.ValueTypeNames.Double3, False).Set( Gf.Vec3d(0, 0, 0.002) ) backside_ales_prim.CreateAttribute("xformOp:rotateZYX", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(0, 0, 0)) backside_ales_prim.CreateAttribute("xformOp:scale", Sdf.ValueTypeNames.Double3, False).Set(Gf.Vec3d(1, 1, 0.02)) backside_ales_prim.CreateAttribute("xformOpOrder", Sdf.ValueTypeNames.String, False).Set( ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] ) UsdGeom.PrimvarsAPI(backside_ales_prim).CreatePrimvar("doNotCastShadows", Sdf.ValueTypeNames.Bool).Set(True) # bind material omni.kit.commands.execute( "BindMaterial", prim_path=backside_ales_path, material_path=emissive_mtl_path, strength=UsdShade.Tokens.weakerThanDescendants, ) created_bound_prims.append((backside_ales_path, UsdShade.Tokens.weakerThanDescendants)) return created_mdl_prims, created_bound_prims
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_add_mdl_file.py
import omni.kit.test import omni.kit.app from pathlib import Path from pxr import Sdf, UsdShade, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import arrange_windows, select_prims from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class TestAddMDLFile(OmniUiTest): async def test_add_mdl_file(self): await arrange_windows() extension_path = omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) mdl_path = Path(extension_path).joinpath("data/tests/TESTEXPORT.mdl").absolute() # setup await ui_test.find("Stage").focus() await ui_test.find("Content").focus() # new stage usd_context = omni.usd.get_context() await usd_context.new_stage_async() stage = usd_context.get_stage() # create prims omni.kit.commands.execute("CreatePrimWithDefaultXform", prim_type="Sphere") await select_prims(["/Sphere"]) await ui_test.human_delay() # drag/drop async with ContentBrowserTestHelper() as content_browser_helper: property_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await content_browser_helper.drag_and_drop_tree_view(str(mdl_path), drag_target=property_widget.center) # verify # NOTE: TESTEXPORT.mdl material is named "Material" so that is the prim created shader = UsdShade.Shader(stage.GetPrimAtPath("/Looks/Material/Shader")) identifier = shader.GetSourceAssetSubIdentifier("mdl") self.assertTrue(identifier == "Material")
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_drag_drop_texture_property.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase import omni.usd from omni.kit import ui_test from pxr import Sdf, UsdShade from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, select_prims, wait_stage_loading, build_sdf_asset_frame_dictonary, arrange_windows ) from omni.kit.window.content_browser.test_helper import ContentBrowserTestHelper class DragDropTextureProperty(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows("Stage", 64) await open_stage(get_test_data_path(__name__, "bound_material.usda")) # After running each test async def tearDown(self): await wait_stage_loading() async def test_l1_drag_drop_texture_property(self): await ui_test.find("Stage").focus() await ui_test.find("Content").focus() usd_context = omni.usd.get_context() stage = usd_context.get_stage() to_select = ["/World/Looks/OmniHair/Shader"] # wait for material to load & UI to refresh await wait_stage_loading() # select prim await select_prims(to_select) await ui_test.human_delay() # open all CollapsableFrames for frame in ui_test.find_all("Property//Frame/**/CollapsableFrame[*]"): if frame.widget.title != "Raw USD Properties": frame.widget.scroll_here_y(0.5) frame.widget.collapsed = False await ui_test.human_delay() # prep content window for drag/drop texture_path = get_test_data_path(__name__, "textures/granite_a_mask.png") content_browser_helper = ContentBrowserTestHelper() # NOTE: cannot keep using widget as they become stale as window refreshes due to set_value # do tests widget_table = await build_sdf_asset_frame_dictonary() for frame_name in widget_table.keys(): for field_name in widget_table[frame_name].keys(): if field_name in ["sdf_asset_info:mdl:sourceAsset"]: continue # NOTE: sdf_asset_ could be used more than once, if so skip if widget_table[frame_name][field_name] == 1: def get_widget(): return ui_test.find(f"Property//Frame/**/CollapsableFrame[*].title=='{frame_name}'").find(f"**/StringField[*].identifier=='{field_name}'") # scroll to widget get_widget().widget.scroll_here_y(0.5) await ui_test.human_delay() # reset for test get_widget().model.set_value("") # drag/drop await content_browser_helper.drag_and_drop_tree_view(texture_path, drag_target=get_widget().center) # verify dragged item(s) for prim_path in to_select: prim = stage.GetPrimAtPath(Sdf.Path(prim_path)) self.assertTrue(prim.IsValid()) attr = prim.GetAttribute(field_name[10:]) self.assertTrue(attr.IsValid()) asset_path = attr.Get() self.assertTrue(asset_path != None) self.assertTrue(asset_path.resolvedPath.replace("\\", "/").lower() == texture_path.replace("\\", "/").lower()) # reset for next test get_widget().model.set_value("")
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/__init__.py
from .create_prims import * from .test_material import * from .test_add_mdl_file import * from .test_drag_drop import * from .test_material_thumb_context_menu import * from .test_material_thumb import * from .test_drag_drop_texture_property import * from .drag_drop_path import * from .test_material_goto import * from .test_refresh import *
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_refresh.py
import math import weakref import platform import unittest import pathlib import omni.kit.test import omni.ui as ui import carb from pxr import Usd, Sdf, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import arrange_windows, open_stage, get_test_data_path, select_prims, wait_stage_loading class TestMaterialRefreshWidget(OmniUiTest): async def setUp(self): await super().setUp() await arrange_windows() await open_stage(get_test_data_path(__name__, "thumbnail_test.usda")) async def tearDown(self): await super().tearDown() await select_prims(["/World/Sphere"]) ui_test.find("Property//Frame/**/CollapsableFrame[*].title=='Raw USD Properties'").widget.collapsed = True async def test_material_refresh_ui(self): stage_widget = ui_test.find("Stage") await stage_widget.focus() # Select the prim. await select_prims(["/World/Sphere"]) # get raw frame & open raw_frame = ui_test.find("Property//Frame/**/CollapsableFrame[*].title=='Raw USD Properties'") raw_frame.widget.collapsed = False await ui_test.human_delay(10) # get material:binding label & scroll to it raw_frame.find("**/Label[*].text=='material:binding'").widget.scroll_here_y(0.5) await ui_test.human_delay(10) # get raw relationship widgets for w in ui_test.find_all("Property//Frame/**/*.identifier!=''"): if w.widget.identifier == "remove_relationship_World_Looks_Material": # verify material binding in material widget self.assertEqual(ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'").widget.model.as_string, "/World/Looks/Material") # remove raw material binding await w.click() await ui_test.human_delay(10) # verify material binding updated in material widget self.assertEqual(ui_test.find("Property//Frame/**/StringField[*].identifier=='combo_drop_target'").widget.model.as_string, "None") break
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_material_thumb_context_menu.py
import weakref import unittest import pathlib import omni.kit.test import omni.ui as ui import carb from pathlib import Path from pxr import Sdf, UsdShade, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, arrange_windows, select_prims, wait_stage_loading, ) class TestMaterialThumbContextMenu(OmniUiTest): async def setUp(self): await super().setUp() await arrange_windows("Stage", 200) await open_stage(get_test_data_path(__name__, "material_context.usda")) await wait_stage_loading() async def tearDown(self): await super().tearDown() await wait_stage_loading() async def test_material_thumb_context_menu_copy_1_to_1(self): stage = omni.usd.get_context().get_stage() # test copy single material from Cone_01 to Sphere_00 bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # select source prim await select_prims(["/World/Cone_01"]) await wait_stage_loading() # right click and "copy" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prim await select_prims(["/World/Sphere_00"]) await ui_test.human_delay() # right click and "paste" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Paste", offset=ui_test.Vec2(10, 10)) # verify binding bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface") async def test_material_thumb_context_menu_copy_2_to_1(self): stage = omni.usd.get_context().get_stage() # test copy single material from Cone_01 to Sphere_00 bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # select source prim await select_prims(["/World/Cone_01", "/World/Cone_02"]) await wait_stage_loading() # right click and "copy" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prim await select_prims(["/World/Sphere_00"]) await ui_test.human_delay() # right click and "paste" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Paste (2 Materials)", offset=ui_test.Vec2(10, 10)) # verify binding bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface") async def test_material_thumb_context_menu_copy_4_to_2(self): stage = omni.usd.get_context().get_stage() # test copy single material from Cone_01 to Sphere_00 bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_01")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # select source prim await select_prims(["/World/Cone_01", "/World/Cone_02"]) await wait_stage_loading() # right click and "copy" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prim await select_prims(["/World/Sphere_00", "/World/Sphere_01"]) await wait_stage_loading() # right click and "paste" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Paste (2 Materials)", offset=ui_test.Vec2(10, 10)) # verify binding bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_00")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface") bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath("/World/Sphere_01")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface") async def test_material_thumb_context_menu_copy_4211_to_2(self): stage = omni.usd.get_context().get_stage() def get_bindings(prim_paths): bindings = [] for prim_path in prim_paths: prim = stage.GetPrimAtPath(prim_path) bound_material, _ = UsdShade.MaterialBindingAPI(prim).ComputeBoundMaterial() bindings.append(bound_material.GetPath().pathString if bound_material else "None") # fixme - due to get_binding_from_prims using sets which are not ordered return sorted(bindings) for index, data in enumerate([("Paste (4 Materials)", ['/World/Looks/OmniGlass_Opacity', '/World/Looks/OmniPBR_ClearCoat', '/World/Looks/PreviewSurface', '/World/Looks/PreviewSurface']), ("Paste (2 Materials)", ['/World/Looks/PreviewSurface', '/World/Looks/PreviewSurface', 'None', 'None']), ("Paste", ['/World/Looks/OmniPBR_ClearCoat', 'None', 'None', 'None']), ("Paste", ['/World/Looks/OmniGlass_Opacity', 'None', 'None', 'None'])]): # select source prims await select_prims(["/World/Cone_01", "/World/Cone_02", "/World/Cube_01", "/World/Cube_02"]) await wait_stage_loading() # verify copy material materials = get_bindings(["/World/Sphere_00", "/World/Sphere_01", "/World/Sphere_03", "/World/Sphere_04"]) self.assertEqual(materials, ['None', 'None', 'None', 'None']) # right click and "copy" widgets = ui_test.find_all("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await widgets[index].click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prim await select_prims(["/World/Sphere_00", "/World/Sphere_01", "/World/Sphere_03", "/World/Sphere_04"]) await wait_stage_loading() # right click and "paste" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu(data[0], offset=ui_test.Vec2(10, 10)) materials = get_bindings(["/World/Sphere_00", "/World/Sphere_01", "/World/Sphere_03", "/World/Sphere_04"]) self.assertEqual(materials, data[1]) omni.kit.undo.undo() async def test_material_thumb_context_menu_copy_1_to_many(self): stage = omni.usd.get_context().get_stage() # test copy single material from Cone_01 to Sphere_* for index in range(0, 64): bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath(f"/World/Sphere_{index:02d}")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # select source prim await select_prims(["/World/Cone_01"]) await wait_stage_loading() # right click and "copy" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prims to_select = [] for index in range(0, 64): to_select.append(f"/World/Sphere_{index:02d}") await select_prims(to_select) # right click in frame to "paste" widget = ui_test.find("Property//Frame/**/CollapsableFrame[*].title=='Materials on selected models'") await widget.click(pos=widget.position+ui_test.Vec2(widget.widget.computed_content_width/2, 10), right_click=True) await ui_test.select_context_menu("Paste To All", offset=ui_test.Vec2(10, 10)) # verify binding for index in range(0, 64): bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath(f"/World/Sphere_{index:02d}")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface") async def test_material_thumb_context_menu_copy_2_to_many(self): stage = omni.usd.get_context().get_stage() # test copy 2 materials from Cone_01, Cone_02 to Sphere_* for index in range(0, 64): bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath(f"/World/Sphere_{index:02d}")).ComputeBoundMaterial() self.assertFalse(bound_material.GetPrim().IsValid()) # select source prim await select_prims(["/World/Cone_01", "/World/Cone_02"]) await wait_stage_loading() # right click and "copy" await ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'").click(right_click=True) await ui_test.select_context_menu("Copy", offset=ui_test.Vec2(10, 10)) # select target prims to_select = [] for index in range(0, 64): to_select.append(f"/World/Sphere_{index:02d}") await select_prims(to_select) # right click in frame to "paste" widget = ui_test.find("Property//Frame/**/CollapsableFrame[*].title=='Materials on selected models'") await widget.click(pos=widget.position+ui_test.Vec2(widget.widget.computed_content_width/2, 10), right_click=True) await ui_test.select_context_menu("Paste To All", offset=ui_test.Vec2(10, 10)) # verify binding for index in range(0, 64): bound_material, _ = UsdShade.MaterialBindingAPI(stage.GetPrimAtPath(f"/World/Sphere_{index:02d}")).ComputeBoundMaterial() self.assertTrue(bound_material.GetPrim().IsValid() == True) self.assertEqual(bound_material.GetPrim().GetPrimPath().pathString, "/World/Looks/PreviewSurface")
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_material.py
import weakref import platform import unittest import pathlib import omni.kit.test import omni.ui as ui import carb from pxr import Usd, Sdf, UsdGeom from omni.ui.tests.test_base import OmniUiTest from omni.kit import ui_test from omni.kit.test_suite.helpers import arrange_windows, wait_stage_loading class TestMaterialWidget(OmniUiTest): async def setUp(self): await super().setUp() await arrange_windows() from omni.kit.property.material.scripts.material_properties import TEST_DATA_PATH self._golden_img_dir = TEST_DATA_PATH.absolute().joinpath("golden_img").absolute() self._usd_path = TEST_DATA_PATH.absolute() self._icon_path = TEST_DATA_PATH.resolve().parent.joinpath("icons") from omni.kit.property.usd.usd_attribute_widget import UsdPropertiesWidget import omni.kit.window.property as p self._w = p.get_window() async def tearDown(self): await super().tearDown() async def test_material_ui(self): usd_context = omni.usd.get_context() await usd_context.new_stage_async() material_prims, bound_prims = omni.kit.property.material.tests.create_test_stage() await self.docked_test_window( window=self._w._window, width=450, height=285, restore_window = ui.Workspace.get_window("Layer") or ui.Workspace.get_window("Stage"), restore_position = ui.DockPosition.BOTTOM) # Select the prim. usd_context.get_selection().set_selected_prim_paths(["/LightPivot_01/AreaLight/Backside"], True) # Need to wait for an additional frames for omni.ui rebuild to take effect await ui_test.human_delay(10) await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name="test_material_ui.png") usd_context.get_selection().set_selected_prim_paths([], True) async def __test_material_multiselect_ui(self): usd_context = omni.usd.get_context() await self.docked_test_window( window=self._w._window, width=450, height=520, restore_window = ui.Workspace.get_window("Layer") or ui.Workspace.get_window("Stage"), restore_position = ui.DockPosition.BOTTOM) # Select the prim. usd_context.get_selection().set_selected_prim_paths(["/LightPivot_01/AreaLight/Backside", "/LightPivot_01/AreaLight/EmissiveSurface"], True) # Need to wait for an additional frames for omni.ui rebuild to take effect await ui_test.human_delay(10) await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name="test_material_multiselect_ui.png") usd_context.get_selection().set_selected_prim_paths([], True) async def test_material_popup_full_ui(self): from omni.kit.window.property.templates import SimplePropertyWidget, LABEL_WIDTH, LABEL_HEIGHT from omni.kit.material.library.listbox_widget import MaterialListBoxWidget usd_context = omni.usd.get_context() test_file_path = self._usd_path.joinpath("material_binding.usda").absolute() await usd_context.open_stage_async(str(test_file_path)) await omni.kit.app.get_app().next_update_async() # full window window = await self.create_test_window(width=460, height=380) with window.frame: with ui.VStack(width=0, height=0): with ui.HStack(width=0, height=0): name_field = ui.StringField(width=400, height=20, enabled=False) name_field.model.set_value("TEST"*4) await ui_test.human_delay(10) listbox_widget = MaterialListBoxWidget(icon_path=None, index=0, on_click_fn=None, theme={}) listbox_widget.set_parent(name_field) listbox_widget.build_ui() # material loading is async so alow for loadng await ui_test.human_delay(50) await ui_test.human_delay(10) await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name="test_material_popup1_ui.png") async def test_material_popup_search_ui(self): from omni.kit.window.property.templates import SimplePropertyWidget, LABEL_WIDTH, LABEL_HEIGHT from omni.kit.material.library.listbox_widget import MaterialListBoxWidget usd_context = omni.usd.get_context() test_file_path = self._usd_path.joinpath("material_binding.usda").absolute() await usd_context.open_stage_async(str(test_file_path)) await omni.kit.app.get_app().next_update_async() # search window = await self.create_test_window(width=460, height=380) with window.frame: with ui.VStack(width=0, height=0): with ui.HStack(width=0, height=0): name_field = ui.StringField(width=400, height=20, enabled=False) name_field.model.set_value("SEARCH"*4) await ui_test.human_delay(10) listbox_widget = MaterialListBoxWidget(icon_path=None, index=0, on_click_fn=None, theme={}) listbox_widget.set_parent(name_field) listbox_widget.build_ui() await ui_test.human_delay(10) listbox_widget._search_updated("PBR") # material loading is async so alow for loadng await wait_stage_loading() await ui_test.human_delay(10) await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name="test_material_popup2_ui.png") async def test_material_description_ui(self): from omni.kit import ui_test usd_context = omni.usd.get_context() test_file_path = self._usd_path.joinpath("material_binding.usda").absolute() await usd_context.open_stage_async(str(test_file_path)) await self.docked_test_window( window=self._w._window, width=450, height=285, restore_window = ui.Workspace.get_window("Layer") or ui.Workspace.get_window("Stage"), restore_position = ui.DockPosition.BOTTOM) # Select the prim. usd_context.get_selection().set_selected_prim_paths(["/World/Looks/OmniPBR"], True) # Need to wait for an additional frames for omni.ui rebuild to take effect await ui_test.human_delay() for w in ui_test.find_all("Property//Frame/**/CollapsableFrame[*]"): if w.widget.title != "Raw USD Properties": w.widget.collapsed = False await ui_test.human_delay() await self.finalize_test(golden_img_dir=self._golden_img_dir, golden_img_name="test_material_description_ui.png") usd_context.get_selection().set_selected_prim_paths([], True)
omniverse-code/kit/exts/omni.kit.property.material/omni/kit/property/material/tests/test_material_goto.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import os import omni.kit.app import omni.usd import carb from omni.kit.test.async_unittest import AsyncTestCase from omni.kit import ui_test from omni.kit.material.library.test_helper import MaterialLibraryTestHelper from omni.kit.test_suite.helpers import ( open_stage, get_test_data_path, select_prims, wait_stage_loading, arrange_windows ) class PropertyMaterialGotoMDL(AsyncTestCase): # Before running each test async def setUp(self): await arrange_windows("Stage", 256) await open_stage(get_test_data_path(__name__, "material_binding_inherited.usda")) # After running each test async def tearDown(self): await wait_stage_loading() async def test_l1_mesh_goto_material_button(self): pass await ui_test.find("Stage").focus() # setup stage = omni.usd.get_context().get_stage() # goto single prims for prim_list, expected in [("/World/Xform/Cone", ['/World/Looks/OmniSurface']), ("/World/Xform/Cone_01", ['/World/Looks/OmniPBR']), ("/World/Xform_Inherited/Cone_02", ['/World/Looks/OmniSurface_Blood']), ("/World/Xform_Inherited/Cone_03", ['/World/Looks/OmniSurface_Blood']), ("/World/Xform_Unbound/Sphere", ['/World/Xform_Unbound/Sphere'])]: await select_prims([prim_list]) thumb_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await thumb_widget.click() await ui_test.human_delay(50) # verify self.assertEqual(omni.usd.get_context().get_selection().get_selected_prim_paths(), expected) # goto multiple prims for index, expected in enumerate([['/World/Looks/OmniPBR', '/World/Looks/OmniSurface'], ['/World/Looks/OmniSurface'], ['/World/Looks/OmniPBR']]): await select_prims(["/World/Xform/Cone", "/World/Xform/Cone_01"]) thumb_widget = ui_test.find_all("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await thumb_widget[index].click() await ui_test.human_delay(50) # verify self.assertEqual(omni.usd.get_context().get_selection().get_selected_prim_paths(), expected) # goto multiple selected inherited prims await select_prims(["/World/Xform_Inherited/Cone_02", "/World/Xform_Inherited/Cone_03"]) thumb_widget = ui_test.find("Property//Frame/**/Button[*].identifier=='preview_drop_target'") await thumb_widget.click() await ui_test.human_delay(50) # verify self.assertEqual(omni.usd.get_context().get_selection().get_selected_prim_paths(), ['/World/Looks/OmniSurface_Blood'])
omniverse-code/kit/exts/omni.kit.property.material/docs/CHANGELOG.md
# Changelog The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## [1.8.19] - 2023-01-23 ### Changes - Material property widget parameters - don't override displayName and/or displayGroup if already set. ## [1.8.18] - 2023-01-10 ### Changes - Fix ui refresh issue when modifying material prim. ## [1.8.17] - 2022-12-20 ### Changes - Add arrange_windows to fix some tests when run in random order. ## [1.8.16] - 2022-11-25 ### Changes - Use notification instead of popup to avoid hang. ## [1.8.15] - 2022-11-16 ### Changes - Fixed widget rebuilding w/ any property change. ## [1.8.14] - 2022-10-28 ### Changes - added add_context_menu to UsdBindingAttributeWidget to prevent multiple menu dditions ## [1.8.13] - 2022-08-17 ### Changes - Updated "material:binding" widget refreshing ## [1.8.12] - 2022-08-17 ### Changes - Fixed clicking on thumbnail to goto material. Now works with inherited materials & multiple selections ## [1.8.11] - 2022-08-09 ### Changes - Updated golden images for TreeView. ## [1.8.10] - 2022-07-25 ### Changes - Refactored unittests to make use of content_browser test helpers ## [1.8.9] - 2022-05-30 ### Changes - Update material thumbnail image to prevent multiple images being overlayed ## [1.8.8] - 2022-05-24 ### Changes - Material thumbnail context menu update - Copy and Paste material groups ## [1.8.7] - 2022-05-23 ### Changes - Support legacy and new Viewport API - Add dependency on omni.kit.viewport.utility ## [1.8.6] - 2022-05-11 ### Changes - Support material browser drag/drop ## [1.8.5] - 2022-05-17 ### Changes - Support multi-file drag & drop ## [1.8.4] - 2022-05-12 ### Changes - Show shader description on material ## [1.8.3] - 2022-05-03 ### Changes - Fixed unittest stemming from content browser changes ## [1.8.2] - 2022-01-11 ### Changes - Improved info:mdl:sourceAsset:subidentifier match with combobox list from material library ## [1.8.1] - 2021-12-02 ### Changes - Exception fixes and shader preload stall fix ## [1.8.0] - 2021-11-29 ### Changes - Added material annotations "description" property ## [1.7.5] - 2021-11-12 ### Changes - Updated to new omni.kit.material.library with new neuraylib ## [1.7.4] - 2021-11-02 ### Changes - Fixed refresh on binding ## [1.7.3] - 2021-10-27 ### Changes - Prevent crash in event callback ## [1.7.2] - 2021-09-10 ### Changes - Dragging a multi-material .mdl file onto preview icon shows material dialog - Added widget identifiers ## [1.7.1] - 2021-08-11 ### Changes - Fixed Sdf.Path warning due to string <-> Sdf.Path compare ## [1.7.0] - 2021-06-30 ### Changes - Updated material list handling to use async Treeview and prevent stalls on large scenes - Moved `MaterialUtils`, `MaterialListBoxWidget`, `SearchWidget`, `ThumbnailLoader`, `MaterialListModel` & `MaterialListDelegate` into omni.kit.material.library ## [1.6.5] - 2021-05-31 ### Changes - Changed "Material & Shader" to "Material and Shader" ## [1.6.4] - 2021-05-20 ### Changes - Material search resets scroll position when typing to prevent user not seeing results ## [1.6.3] - 2021-05-11 ### Changes - Updated material info so Outputs, UI Properties and Material Flags are closed by default ## [1.6.2] - 2021-04-15 ### Changes - Changed how material input is populated. ## [1.6.1] - 2021-03-17 ### Changes - Add material thumnail context menu ## [1.6.0] - 2021-03-16 ### Changes - Add support for UsdShade.NodeGraph prims - Add support for UsdUI.Backdrop prims ## [1.5.0] - 2021-03-09 ### Changes - Updated material search dialog - Added current materials to quicksearch ## [1.4.3] - 2021-02-25 ### Changes - Fixed issue with materials with Relationship ## [1.4.2] - 2021-02-10 ### Changes - Updated StyleUI handling ## [1.4.1] - 2021-02-03 ### Changes - Fixed text issue with long lists in material name search dialog ## [1.4.0] - 2021-01-28 ### Changes - Added material name search dialog ## [1.3.8] - 2020-12-16 ### Changes - Fixed material shader preloading ## [1.3.7] - 2020-12-10 ### Changes - fixed button leak ## [1.3.6] - 2020-12-09 ### Changes - Added extension icon - Added readme - Updated preview image ## [1.3.5] - 2020-12-01 ### Updated - When property in both material and shader don't show shader properties in material ## [1.3.5] - 2020-11-20 ### Updated - Added Sub-Identifier support ## [1.3.4] - 2020-11-19 ### Updated - Fixed issue with newly created materials not refreshing when loaded ## [1.3.3] - 2020-11-18 ### Added - Updates thumbnail loading to use async and quiet error messages ## [1.3.2] - 2020-11-13 ### Added - Improved material group/name & added PreviewSurface values ## [1.3.1] - 2020-11-12 ### Added - Fixed issue where bound material didn't show sometimes - Added refresh on bound material when material created/modified to update material list ## [1.3.0] - 2020-11-06 ### Added - Materials now show Materials & Shader values ## [1.2.1] - 2020-10-21 ### Added - Moved schema into bundle ## [1.2.0] - 2020-10-16 ### Added - Added thumbnail preview - Added click to goto material on thumbnail ## [1.1.0] - 2020-10-02 ### Added - Added material binding UI ## [1.0.0] - 2020-09-17 ### Added - Created
omniverse-code/kit/exts/omni.kit.property.material/docs/README.md
# omni.kit.property.material ## Introduction Property window extensions are for viewing and editing Usd Prim Attributes ## This extension supports editing of these Usd Types; - UsdShade.Material - UsdShade.Shader ## also allows material bindings on other prims to be edited
omniverse-code/kit/exts/omni.kit.property.material/docs/index.rst
omni.kit.property.material ########################### Property Material Values .. toctree:: :maxdepth: 1 CHANGELOG
omniverse-code/kit/exts/omni.kit.property.material/data/tests/material_context.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 double3 target = (0, 0, 0) } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double radius = 866.0254037844386 double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 double3 target = (0, 0, 0) } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 double3 target = (0, 0, 0) } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } int refinementOverrideImplVersion = 0 dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:iray:environment_dome_ground_position" = (0, 0, 0) float3 "rtx:iray:environment_dome_ground_reflectivity" = (0, 0, 0) float3 "rtx:iray:environment_dome_rotation_axis" = (0, 1, 0) float3 "rtx:lightspeed:material:overrideAlbedo" = (0.5, 0.5, 0.5) float3 "rtx:lightspeed:material:overrideEmissiveColor" = (0.5, 0.5, 0.5) float3 "rtx:post:backgroundZeroAlpha:backgroundDefaultColor" = (0, 0, 0) float3 "rtx:post:colorcorr:contrast" = (1, 1, 1) float3 "rtx:post:colorcorr:gain" = (1, 1, 1) float3 "rtx:post:colorcorr:gamma" = (1, 1, 1) float3 "rtx:post:colorcorr:offset" = (0, 0, 0) float3 "rtx:post:colorcorr:saturation" = (1, 1, 1) float3 "rtx:post:colorgrad:blackpoint" = (0, 0, 0) float3 "rtx:post:colorgrad:contrast" = (1, 1, 1) float3 "rtx:post:colorgrad:gain" = (1, 1, 1) float3 "rtx:post:colorgrad:gamma" = (1, 1, 1) float3 "rtx:post:colorgrad:lift" = (0, 0, 0) float3 "rtx:post:colorgrad:multiply" = (1, 1, 1) float3 "rtx:post:colorgrad:offset" = (0, 0, 0) float3 "rtx:post:colorgrad:whitepoint" = (1, 1, 1) double "rtx:post:lensDistortion:cameraFocalLength" = 18.14756202697754 float3 "rtx:post:lensDistortion:lensFocalLengthArray" = (10, 30, 50) float3 "rtx:post:lensFlares:anisoFlareFalloffX" = (450, 475, 500) float3 "rtx:post:lensFlares:anisoFlareFalloffY" = (10, 10, 10) float3 "rtx:post:lensFlares:cutoffPoint" = (2, 2, 2) float3 "rtx:post:lensFlares:haloFlareFalloff" = (10, 10, 10) float3 "rtx:post:lensFlares:haloFlareRadius" = (75, 75, 75) float3 "rtx:post:lensFlares:isotropicFlareFalloff" = (50, 50, 50) float3 "rtx:post:tonemap:whitepoint" = (1, 1, 1) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file float3 xformOp:rotateZYX = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) float3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Scope "Looks" { def Material "OmniGlass" { token outputs:mdl:displacement.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniGlass/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniGlass.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass" token outputs:out } } def Material "OmniGlass_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniGlass_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass_Opacity" token outputs:out } } def Material "OmniPBR" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" token outputs:out } } def Material "OmniPBR_ClearCoat" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_ClearCoat.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_ClearCoat" token outputs:out } } def Material "OmniPBR_ClearCoat_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_ClearCoat_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_ClearCoat_Opacity" token outputs:out } } def Material "OmniPBR_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_Opacity" token outputs:out } } def Material "PreviewSurface" { token outputs:surface.connect = </World/Looks/PreviewSurface/Shader.outputs:surface> def Shader "Shader" { reorder properties = ["inputs:diffuseColor", "inputs:emissiveColor", "inputs:useSpecularWorkflow", "inputs:specularColor", "inputs:metallic", "inputs:roughness", "inputs:clearcoat", "inputs:clearcoatRoughness", "inputs:opacity", "inputs:opacityThreshold", "inputs:ior", "inputs:normal", "inputs:displacement", "inputs:occlusion", "outputs:surface", "outputs:displacement"] uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0.01 color3f inputs:diffuseColor = (0.18, 0.18, 0.18) float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic = 0 normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness = 0.5 ( customData = { dictionary range = { double max = 1 double min = 0 } } ) color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 ( customData = { dictionary range = { int max = 1 int min = 0 } } ) token outputs:displacement token outputs:surface } } def Material "PreviewSurfaceTexture" { token outputs:mdl:surface.connect = </World/Looks/PreviewSurfaceTexture/PreviewSurfaceTexture.outputs:surface> def Shader "PreviewSurfaceTexture" { uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0 color3f inputs:diffuseColor.connect = </World/Looks/PreviewSurfaceTexture/diffuseColorTex.outputs:rgb> float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 color3f inputs:metallic.connect = </World/Looks/PreviewSurfaceTexture/metallicTex.outputs:rgb> normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 color3f inputs:roughness.connect = </World/Looks/PreviewSurfaceTexture/roughnessTex.outputs:rgb> color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 token outputs:surface } def Shader "diffuseColorTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } def Shader "metallicTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } def Shader "roughnessTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } } } def Mesh "Cone_01" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/PreviewSurface> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cone_02" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/PreviewSurface> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateZYX = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateZYX", "xformOp:scale"] } def Mesh "Cube_01" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] rel material:binding = </World/Looks/OmniPBR_ClearCoat> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube_02" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] rel material:binding = </World/Looks/OmniGlass_Opacity> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_00" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_01" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_02" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_03" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_04" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_05" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_06" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_07" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_08" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_09" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_10" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_11" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_12" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_13" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_14" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_15" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_16" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_17" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_18" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_19" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_20" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_21" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_22" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_23" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_24" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_25" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_26" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_27" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_28" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_29" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_30" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_31" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_32" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_33" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_34" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_35" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_36" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_37" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_38" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_39" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_40" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_41" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_42" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_43" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_44" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_45" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_46" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_47" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_48" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_49" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_50" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_51" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_52" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_53" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_54" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_55" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_56" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_57" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_58" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_59" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_60" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_61" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_62" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Sphere "Sphere_63" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] double radius = 50 custom bool refinementEnableOverride = 1 custom int refinementLevel = 2 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.kit.property.material/data/tests/TESTEXPORT.mdl
mdl 1.7; using m_mdl = "mdl"; import ::state::normal; import ::OmniPBR::OmniPBR; import ::nvidia::support_definitions::lookup_color; import ::base::mono_mode; import ::tex::gamma_mode; import ::tex::wrap_mode; export material Material(*) = ::OmniPBR::OmniPBR( diffuse_color_constant: ::nvidia::support_definitions::lookup_color(texture_2d(), float2(0.f), tex::wrap_repeat, tex::wrap_repeat, float2(0.f, 1.f), float2(0.f, 1.f)), diffuse_texture: texture_2d(), albedo_desaturation: 0.f, albedo_add: 0.f, albedo_brightness: 1.f, diffuse_tint: color(1.f, 1.f, 1.f), reflection_roughness_constant: 0.5f, reflection_roughness_texture_influence: 0.f, reflectionroughness_texture: texture_2d(), metallic_constant: 0.f, metallic_texture_influence: 0.f, metallic_texture: texture_2d(), specular_level: 0.5f, enable_ORM_texture: false, ORM_texture: texture_2d(), ao_to_diffuse: 0.f, ao_texture: texture_2d(), enable_emission: false, emissive_color: color(1.f, 0.100000001f, 0.100000001f), emissive_color_texture: texture_2d(), emissive_mask_texture: texture_2d(), emissive_intensity: 40.f, enable_opacity: false, enable_opacity_texture: false, opacity_constant: 1.f, opacity_texture: texture_2d(), opacity_mode: base::mono_average, opacity_threshold: 0.f, bump_factor: 1.f, normalmap_texture: texture_2d(), detail_bump_factor: 0.300000012f, detail_normalmap_texture: texture_2d(), flip_tangent_u: false, flip_tangent_v: true, project_uvw: false, world_or_object: false, uv_space_index: 0, texture_translate: float2(0.f), texture_rotate: 0.f, texture_scale: float2(1.f), detail_texture_translate: float2(0.f), detail_texture_rotate: 0.f, detail_texture_scale: float2(1.f));
omniverse-code/kit/exts/omni.kit.property.material/data/tests/material_binding_inherited.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 551.25 } string boundCamera = "/OmniverseKit_Top" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) int "rtx:hydra:curves:splits" = 2 double "rtx:hydra:points:defaultWidth" = 1 float3 "rtx:iray:environment_dome_ground_position" = (0, 0, 0) float3 "rtx:iray:environment_dome_ground_reflectivity" = (0, 0, 0) float3 "rtx:iray:environment_dome_rotation_axis" = (0, 1, 0) float3 "rtx:lightspeed:material:overrideAlbedo" = (0.5, 0.5, 0.5) float3 "rtx:lightspeed:material:overrideEmissiveColor" = (0.5, 0.5, 0.5) float3 "rtx:post:backgroundZeroAlpha:backgroundDefaultColor" = (0, 0, 0) float3 "rtx:post:colorcorr:contrast" = (1, 1, 1) float3 "rtx:post:colorcorr:gain" = (1, 1, 1) float3 "rtx:post:colorcorr:gamma" = (1, 1, 1) float3 "rtx:post:colorcorr:offset" = (0, 0, 0) float3 "rtx:post:colorcorr:saturation" = (1, 1, 1) float3 "rtx:post:colorgrad:blackpoint" = (0, 0, 0) float3 "rtx:post:colorgrad:contrast" = (1, 1, 1) float3 "rtx:post:colorgrad:gain" = (1, 1, 1) float3 "rtx:post:colorgrad:gamma" = (1, 1, 1) float3 "rtx:post:colorgrad:lift" = (0, 0, 0) float3 "rtx:post:colorgrad:multiply" = (1, 1, 1) float3 "rtx:post:colorgrad:offset" = (0, 0, 0) float3 "rtx:post:colorgrad:whitepoint" = (1, 1, 1) float3 "rtx:post:lensDistortion:lensFocalLengthArray" = (10, 30, 50) float3 "rtx:post:lensFlares:anisoFlareFalloffX" = (450, 475, 500) float3 "rtx:post:lensFlares:anisoFlareFalloffY" = (10, 10, 10) float3 "rtx:post:lensFlares:cutoffPoint" = (2, 2, 2) float3 "rtx:post:lensFlares:haloFlareFalloff" = (10, 10, 10) float3 "rtx:post:lensFlares:haloFlareRadius" = (75, 75, 75) float3 "rtx:post:lensFlares:isotropicFlareFalloff" = (50, 50, 50) float3 "rtx:post:tonemap:whitepoint" = (1, 1, 1) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "OmniSurface" { token outputs:mdl:displacement.connect = </World/Looks/OmniSurface/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniSurface/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniSurface/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniSurface.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniSurface" token outputs:out } } def Material "OmniPBR" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" token outputs:out } } def Material "OmniSurface_Blood" { token outputs:mdl:displacement.connect = </World/Looks/OmniSurface_Blood/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniSurface_Blood/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniSurface_Blood/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniSurfacePresets.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniSurface_Blood" token outputs:out } } } def Xform "Xform" { rel material:binding = None ( bindMaterialAs = "weakerThanDescendants" ) double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cone" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniSurface> ( bindMaterialAs = "strongerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-100, 100, -100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cone_01" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniPBR> ( bindMaterialAs = "strongerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (100, -100, 100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Xform_Inherited" { rel material:binding = </World/Looks/OmniSurface_Blood> ( bindMaterialAs = "strongerThanDescendants" ) double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Cone_02" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniGlass> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (-100, -100, 100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cone_03" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 32, 33, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 32, 0, 32, 64, 65, 33, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 64, 32, 64, 96, 97, 65, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 96, 64, 96, 128, 129, 97, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 128, 96, 160, 161, 162, 160, 162, 163, 160, 163, 164, 160, 164, 165, 160, 165, 166, 160, 166, 167, 160, 167, 168, 160, 168, 169, 160, 169, 170, 160, 170, 171, 160, 171, 172, 160, 172, 173, 160, 173, 174, 160, 174, 175, 160, 175, 176, 160, 176, 177, 160, 177, 178, 160, 178, 179, 160, 179, 180, 160, 180, 181, 160, 181, 182, 160, 182, 183, 160, 183, 184, 160, 184, 185, 160, 185, 186, 160, 186, 187, 160, 187, 188, 160, 188, 189, 160, 189, 190, 160, 190, 191, 160, 191, 192, 160, 192, 161] rel material:binding = </World/Looks/OmniPBR> ( bindMaterialAs = "strongerThanDescendants" ) normal3f[] normals = [(0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.4472136, 0.17449391), (0.877241, 0.4472136, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721362, 0.4969167), (0.74368936, 0.44721362, 0.4969167), (0.7436893, 0.4472136, 0.49691668), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721365, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228346, 0.44721362, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449254, 0.44721362, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.44721362, 0.49691904), (-0.7436878, 0.44721362, 0.49691904), (-0.74368775, 0.4472136, 0.496919), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.0000028099257), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.4472136, -0.17449117), (-0.8772417, 0.44721356, -0.17449118), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.63245803, 0.44721362, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.44721362, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.44721362, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721362, -0.87724024), (-0.17449804, 0.44721362, -0.87724024), (-0.17449805, 0.4472136, -0.8772402), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.4472136, -0.8263448), (0.34227827, 0.44721356, -0.8263447), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721362, -0.632459), (0.7436862, 0.4472136, -0.49692136), (0.74368626, 0.44721362, -0.4969214), (0.74368626, 0.44721362, -0.4969214), (0.7436862, 0.4472136, -0.49692136), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.44721362, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721362, 0.17449394), (0.8772411, 0.44721362, 0.17449394), (0.877241, 0.44721356, 0.17449391), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.74368936, 0.44721365, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.7436893, 0.4472136, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.44721362, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049631, 0.44721362, 0.89442724), (0.0000014049631, 0.44721362, 0.89442724), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449255, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.4472136, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.7436901), (-0.4969155, 0.44721362, 0.74369013), (-0.4969155, 0.44721362, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.74368775, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.4472136, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.4472136, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8944272, 0.4472136, 0.000002809926), (-0.89442724, 0.44721362, 0.0000028099262), (-0.89442724, 0.44721362, 0.0000028099262), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.4472136, -0.17449115), (-0.8772417, 0.44721356, -0.17449118), (-0.8772417, 0.44721356, -0.17449118), (-0.8772416, 0.4472136, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.44721362, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.4472136, -0.49691436), (-0.7436909, 0.4472136, -0.49691436), (-0.74369085, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.44721362, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.34228602, 0.4472136, -0.82634145), (-0.34228605, 0.4472136, -0.8263415), (-0.34228605, 0.4472136, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.17449804, 0.44721356, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449805, 0.4472136, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.44721362, -0.89442724), (-0.000004214889, 0.44721362, -0.89442724), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.44721362, -0.87724185), (0.1744898, 0.44721362, -0.8772419), (0.1744898, 0.44721362, -0.8772419), (0.17448977, 0.44721362, -0.87724185), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.4969132, 0.4472136, -0.7436916), (0.4969132, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.44721362, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.826341, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.8944272, 0.4472136, 0), (0.89442724, 0.44721362, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8772411, 0.44721356, 0.17449392), (0.877241, 0.44721356, 0.17449391), (0.877241, 0.44721356, 0.17449391), (0.8772411, 0.44721356, 0.17449392), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721365, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.4472136, 0.87724084), (0.1744953, 0.44721356, 0.8772408), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.4472136, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.74368775, 0.44721356, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.7436878, 0.4472136, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.34228474), (-0.82634205, 0.44721356, 0.3422847), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.44721356, 0.17449667), (-0.8772405, 0.4472136, 0.17449668), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.4472136, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.74369085, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.49692017, 0.44721356, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.4969202, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.4472136, -0.82634145), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.87724024), (-0.17449804, 0.44721356, -0.8772402), (-0.17449804, 0.44721356, -0.8772402), (-0.17449807, 0.4472136, -0.87724024), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448977, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.34227827, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227824, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.4472136, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.44721356, -0.49692133), (0.7436862, 0.44721356, -0.49692133), (0.74368626, 0.4472136, -0.49692136), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.8263409, 0.4472136, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0.87724113, 0.4472136, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.8772411, 0.44721356, 0.17449392), (0.87724113, 0.4472136, 0.17449392), (0.8263431, 0.44721362, 0.34228215), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.4472136, 0.34228218), (0.8263431, 0.44721362, 0.34228215), (0.7436893, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.74368936, 0.44721362, 0.49691668), (0.7436893, 0.44721362, 0.49691668), (0.632456, 0.4472136, 0.632455), (0.63245606, 0.4472136, 0.63245505), (0.63245606, 0.4472136, 0.63245505), (0.632456, 0.4472136, 0.632455), (0.49691784, 0.4472136, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.44721356, 0.7436885), (0.49691784, 0.4472136, 0.7436885), (0.34228343, 0.4472136, 0.8263425), (0.34228346, 0.4472136, 0.8263426), (0.34228346, 0.4472136, 0.8263426), (0.34228343, 0.4472136, 0.8263425), (0.17449528, 0.4472136, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.1744953, 0.44721356, 0.8772408), (0.17449528, 0.4472136, 0.8772408), (0.0000014049629, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.000001404963, 0.4472136, 0.8944272), (0.0000014049629, 0.4472136, 0.8944272), (-0.17449255, 0.4472136, 0.8772414), (-0.17449254, 0.44721356, 0.8772413), (-0.17449254, 0.44721356, 0.8772413), (-0.17449255, 0.4472136, 0.8772414), (-0.34228086, 0.44721365, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228083, 0.44721356, 0.82634366), (-0.34228086, 0.44721365, 0.82634366), (-0.49691546, 0.4472136, 0.7436901), (-0.49691552, 0.4472136, 0.74369013), (-0.49691552, 0.4472136, 0.74369013), (-0.49691546, 0.4472136, 0.7436901), (-0.6324541, 0.4472136, 0.6324571), (-0.63245404, 0.44721356, 0.632457), (-0.63245404, 0.44721356, 0.632457), (-0.6324541, 0.4472136, 0.6324571), (-0.74368775, 0.4472136, 0.49691907), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.44721356, 0.496919), (-0.74368775, 0.4472136, 0.49691907), (-0.82634205, 0.44721365, 0.34228477), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721356, 0.3422847), (-0.82634205, 0.44721365, 0.34228477), (-0.87724054, 0.4472136, 0.1744967), (-0.8772405, 0.4472136, 0.17449668), (-0.8772405, 0.4472136, 0.17449668), (-0.87724054, 0.4472136, 0.1744967), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.000002809926), (-0.8944272, 0.4472136, 0.0000028099257), (-0.8772416, 0.4472136, -0.17449117), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.44721362, -0.17449115), (-0.8772416, 0.4472136, -0.17449117), (-0.82634413, 0.44721356, -0.34227952), (-0.8263442, 0.4472136, -0.34227955), (-0.8263442, 0.4472136, -0.34227955), (-0.82634413, 0.44721356, -0.34227952), (-0.74369085, 0.4472136, -0.4969143), (-0.7436909, 0.44721362, -0.49691433), (-0.7436909, 0.44721362, -0.49691433), (-0.74369085, 0.4472136, -0.4969143), (-0.632458, 0.4472136, -0.632453), (-0.63245803, 0.4472136, -0.6324531), (-0.63245803, 0.4472136, -0.6324531), (-0.632458, 0.4472136, -0.632453), (-0.49692023, 0.4472136, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692017, 0.44721356, -0.743687), (-0.49692023, 0.4472136, -0.743687), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.34228602, 0.44721362, -0.8263415), (-0.17449807, 0.4472136, -0.8772403), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.87724024), (-0.17449807, 0.4472136, -0.8772403), (-0.0000042148886, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.000004214889, 0.4472136, -0.8944272), (-0.0000042148886, 0.4472136, -0.8944272), (0.17448977, 0.4472136, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448978, 0.44721362, -0.87724185), (0.17448977, 0.4472136, -0.87724185), (0.34227827, 0.44721356, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.4472136, -0.8263447), (0.34227827, 0.44721356, -0.8263447), (0.49691314, 0.4472136, -0.7436916), (0.49691316, 0.4472136, -0.7436917), (0.49691316, 0.4472136, -0.7436917), (0.49691314, 0.4472136, -0.7436916), (0.6324521, 0.4472136, -0.63245904), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.44721356, -0.632459), (0.6324521, 0.4472136, -0.63245904), (0.7436862, 0.4472136, -0.4969214), (0.74368626, 0.4472136, -0.49692136), (0.74368626, 0.4472136, -0.49692136), (0.7436862, 0.4472136, -0.4969214), (0.8263409, 0.4472136, -0.3422873), (0.826341, 0.44721362, -0.34228733), (0.826341, 0.44721362, -0.34228733), (0.8263409, 0.4472136, -0.3422873), (0.87723994, 0.44721365, -0.17449942), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.4472136, -0.17449944), (0.87723994, 0.44721365, -0.17449942), (0.8944272, 0.4472136, 0), (0.8944272, 0.4472136, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814), (37.50001, -25.000025, 0), (36.77946, -25.000025, 7.315882), (34.6455, -25.000025, 14.35062), (31.180134, -25.000025, 20.833872), (26.516535, -25.000025, 26.516493), (20.833921, -25.000025, 31.1801), (14.350675, -25.000025, 34.645477), (7.31594, -25.000025, 36.77945), (0.000058904883, -25.000025, 37.50001), (-7.3158245, -25.000025, 36.779472), (-14.350566, -25.000025, 34.645523), (-20.833824, -25.000025, 31.180166), (-26.51645, -25.000025, 26.516575), (-31.180067, -25.000025, 20.833971), (-34.645454, -25.000025, 14.350729), (-36.779438, -25.000025, 7.3159976), (-37.50001, -25.000025, 0.00011780977), (-36.779484, -25.000025, -7.315767), (-34.645546, -25.000025, -14.350511), (-31.180199, -25.000025, -20.833775), (-26.516617, -25.000025, -26.516409), (-20.834019, -25.000025, -31.180035), (-14.350783, -25.000025, -34.64543), (-7.316056, -25.000025, -36.779427), (-0.00017671465, -25.000025, -37.50001), (7.315709, -25.000025, -36.779495), (14.350456, -25.000025, -34.64557), (20.833725, -25.000025, -31.180231), (26.516367, -25.000025, -26.516659), (31.180002, -25.000025, -20.834068), (34.64541, -25.000025, -14.350838), (36.779415, -25.000025, -7.3161135), (25.000025, -0.00005, 0), (24.519657, -0.00005, 4.8772583), (23.097015, -0.00005, 9.567086), (20.78677, -0.00005, 13.889257), (17.677702, -0.00005, 17.677673), (13.88929, -0.00005, 20.786747), (9.567122, -0.00005, 23.097), (4.8772964, -0.00005, 24.51965), (0.000039269948, -0.00005, 25.000025), (-4.8772197, -0.00005, 24.519665), (-9.56705, -0.00005, 23.09703), (-13.889225, -0.00005, 20.78679), (-17.677645, -0.00005, 17.677729), (-20.786726, -0.00005, 13.889323), (-23.096985, -0.00005, 9.567159), (-24.519642, -0.00005, 4.877335), (-25.000025, -0.00005, 0.000078539895), (-24.519672, -0.00005, -4.877181), (-23.097046, -0.00005, -9.567014), (-20.786814, -0.00005, -13.889193), (-17.677757, -0.00005, -17.677618), (-13.889356, -0.00005, -20.786703), (-9.567195, -0.00005, -23.09697), (-4.8773737, -0.00005, -24.519634), (-0.00011780984, -0.00005, -25.000025), (4.8771424, -0.00005, -24.51968), (9.5669775, -0.00005, -23.097061), (13.889159, -0.00005, -20.786835), (17.67759, -0.00005, -17.677784), (20.786682, -0.00005, -13.889388), (23.096954, -0.00005, -9.567231), (24.519627, -0.00005, -4.8774123), (12.500037, 24.999926, 0), (12.259853, 24.999926, 2.438634), (11.548531, 24.999926, 4.7835526), (10.393405, 24.999926, 6.9446425), (8.838868, 24.999926, 8.838855), (6.9446588, 24.999926, 10.393394), (4.783571, 24.999926, 11.548523), (2.4386532, 24.999926, 12.25985), (0.000019635014, 24.999926, 12.500037), (-2.4386146, 24.999926, 12.259857), (-4.7835345, 24.999926, 11.548538), (-6.9446263, 24.999926, 10.393416), (-8.8388405, 24.999926, 8.838882), (-10.393384, 24.999926, 6.9446754), (-11.548515, 24.999926, 4.783589), (-12.259846, 24.999926, 2.4386725), (-12.500037, 24.999926, 0.000039270028), (-12.259861, 24.999926, -2.4385955), (-11.548546, 24.999926, -4.7835164), (-10.393427, 24.999926, -6.94461), (-8.838896, 24.999926, -8.838826), (-6.9446917, 24.999926, -10.393373), (-4.783607, 24.999926, -11.548508), (-2.4386916, 24.999926, -12.259842), (-0.00005890504, 24.999926, -12.500037), (2.4385762, 24.999926, -12.259865), (4.7834983, 24.999926, -11.548553), (6.9445934, 24.999926, -10.393438), (8.838813, 24.999926, -8.83891), (10.393362, 24.999926, -6.944708), (11.548501, 24.999926, -4.783625), (12.259838, 24.999926, -2.438711), (0.00005, 49.9999, 0), (0.000049039267, 49.9999, 0.000009754506), (0.000046193985, 49.9999, 0.000019134153), (0.000041573498, 49.9999, 0.000027778487), (0.000035355366, 49.9999, 0.00003535531), (0.000027778553, 49.9999, 0.000041573454), (0.000019134226, 49.9999, 0.000046193953), (0.0000097545835, 49.9999, 0.000049039252), (7.8539814e-11, 49.9999, 0.00005), (-0.00000975443, 49.9999, 0.00004903928), (-0.00001913408, 49.9999, 0.000046194014), (-0.000027778422, 49.9999, 0.00004157354), (-0.000035355257, 49.9999, 0.00003535542), (-0.00004157341, 49.9999, 0.000027778618), (-0.000046193923, 49.9999, 0.000019134299), (-0.000049039234, 49.9999, 0.000009754661), (-0.00005, 49.9999, 1.5707963e-10), (-0.000049039296, 49.9999, -0.0000097543525), (-0.000046194044, 49.9999, -0.000019134008), (-0.000041573585, 49.9999, -0.000027778357), (-0.00003535548, 49.9999, -0.0000353552), (-0.000027778684, 49.9999, -0.000041573367), (-0.000019134372, 49.9999, -0.000046193894), (-0.000009754737, 49.9999, -0.00004903922), (-2.3561944e-10, 49.9999, -0.00005), (0.000009754275, 49.9999, -0.00004903931), (0.000019133935, 49.9999, -0.000046194073), (0.000027778291, 49.9999, -0.00004157363), (0.000035355144, 49.9999, -0.000035355533), (0.000041573323, 49.9999, -0.000027778748), (0.000046193865, 49.9999, -0.000019134444), (0.000049039205, 49.9999, -0.0000097548145), (0, -50, 0), (50, -50, 0), (49.039265, -50, 9.754506), (46.193985, -50, 19.134153), (41.573498, -50, 27.778486), (35.355366, -50, 35.355312), (27.778553, -50, 41.573452), (19.134226, -50, 46.193954), (9.754583, -50, 49.03925), (0.000078539815, -50, 50), (-9.75443, -50, 49.03928), (-19.13408, -50, 46.194016), (-27.778421, -50, 41.57354), (-35.355255, -50, 35.355423), (-41.57341, -50, 27.778618), (-46.193924, -50, 19.134298), (-49.039234, -50, 9.754661), (-50, -50, 0.00015707963), (-49.039295, -50, -9.754353), (-46.194046, -50, -19.134008), (-41.573586, -50, -27.778357), (-35.355476, -50, -35.3552), (-27.778683, -50, -41.573364), (-19.13437, -50, -46.193893), (-9.754738, -50, -49.03922), (-0.00023561945, -50, -50), (9.754275, -50, -49.03931), (19.133936, -50, -46.194073), (27.778292, -50, -41.573627), (35.355145, -50, -35.355534), (41.573322, -50, -27.778748), (46.193863, -50, -19.134443), (49.039204, -50, -9.754814)] float2[] primvars:st = [(1, 0), (1, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0), (0.96875006, 0), (0.96875006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0), (0.93750006, 0), (0.93750006, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0), (0.9062501, 0), (0.9062501, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0), (0.8750001, 0), (0.8750001, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0), (0.8437502, 0), (0.8437502, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0), (0.8125002, 0), (0.8125002, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0), (0.78125024, 0), (0.78125024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0), (0.75000024, 0), (0.75000024, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0), (0.7187503, 0), (0.7187503, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0), (0.6875003, 0), (0.6875003, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0), (0.65625036, 0), (0.65625036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0), (0.62500036, 0), (0.62500036, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0), (0.5937504, 0), (0.5937504, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0), (0.5625004, 0), (0.5625004, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0), (0.5312505, 0), (0.5312505, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0), (0.5000005, 0), (0.5000005, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0), (0.46875054, 0), (0.46875054, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0), (0.43750057, 0), (0.43750057, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0), (0.4062506, 0), (0.4062506, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0), (0.37500063, 0), (0.37500063, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0), (0.34375066, 0), (0.34375066, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0), (0.3125007, 0), (0.3125007, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0), (0.28125072, 0), (0.28125072, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0), (0.25000075, 0), (0.25000075, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0), (0.21875077, 0), (0.21875077, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0), (0.18750082, 0), (0.18750082, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0), (0.15625085, 0), (0.15625085, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0), (0.12500088, 0), (0.12500088, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0), (0.09375091, 0), (0.09375091, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0), (0.06250094, 0), (0.06250094, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0), (0.03125097, 0), (0.03125097, 0.24999975), (0, 0.24999975), (0, 0), (1, 0.24999975), (1, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.24999975), (0.96875006, 0.24999975), (0.96875006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.24999975), (0.93750006, 0.24999975), (0.93750006, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.24999975), (0.9062501, 0.24999975), (0.9062501, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.24999975), (0.8750001, 0.24999975), (0.8750001, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.24999975), (0.8437502, 0.24999975), (0.8437502, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.24999975), (0.8125002, 0.24999975), (0.8125002, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.24999975), (0.78125024, 0.24999975), (0.78125024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.24999975), (0.75000024, 0.24999975), (0.75000024, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.24999975), (0.7187503, 0.24999975), (0.7187503, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.24999975), (0.6875003, 0.24999975), (0.6875003, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.24999975), (0.65625036, 0.24999975), (0.65625036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.24999975), (0.62500036, 0.24999975), (0.62500036, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.24999975), (0.5937504, 0.24999975), (0.5937504, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.24999975), (0.5625004, 0.24999975), (0.5625004, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.24999975), (0.5312505, 0.24999975), (0.5312505, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.24999975), (0.5000005, 0.24999975), (0.5000005, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.24999975), (0.46875054, 0.24999975), (0.46875054, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.24999975), (0.43750057, 0.24999975), (0.43750057, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.24999975), (0.4062506, 0.24999975), (0.4062506, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.24999975), (0.37500063, 0.24999975), (0.37500063, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.24999975), (0.34375066, 0.24999975), (0.34375066, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.24999975), (0.3125007, 0.24999975), (0.3125007, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.24999975), (0.28125072, 0.24999975), (0.28125072, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.24999975), (0.25000075, 0.24999975), (0.25000075, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.24999975), (0.21875077, 0.24999975), (0.21875077, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.24999975), (0.18750082, 0.24999975), (0.18750082, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.24999975), (0.15625085, 0.24999975), (0.15625085, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.24999975), (0.12500088, 0.24999975), (0.12500088, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.24999975), (0.09375091, 0.24999975), (0.09375091, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.24999975), (0.06250094, 0.24999975), (0.06250094, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.24999975), (0.03125097, 0.24999975), (0.03125097, 0.4999995), (0, 0.4999995), (0, 0.24999975), (1, 0.4999995), (1, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.4999995), (0.96875006, 0.4999995), (0.96875006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.4999995), (0.93750006, 0.4999995), (0.93750006, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.4999995), (0.9062501, 0.4999995), (0.9062501, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.4999995), (0.8750001, 0.4999995), (0.8750001, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.4999995), (0.8437502, 0.4999995), (0.8437502, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.4999995), (0.8125002, 0.4999995), (0.8125002, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.4999995), (0.78125024, 0.4999995), (0.78125024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.4999995), (0.75000024, 0.4999995), (0.75000024, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.4999995), (0.7187503, 0.4999995), (0.7187503, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.4999995), (0.6875003, 0.4999995), (0.6875003, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.4999995), (0.65625036, 0.4999995), (0.65625036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.4999995), (0.62500036, 0.4999995), (0.62500036, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.4999995), (0.5937504, 0.4999995), (0.5937504, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.4999995), (0.5625004, 0.4999995), (0.5625004, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.4999995), (0.5312505, 0.4999995), (0.5312505, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.4999995), (0.5000005, 0.4999995), (0.5000005, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.4999995), (0.46875054, 0.4999995), (0.46875054, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.4999995), (0.43750057, 0.4999995), (0.43750057, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.4999995), (0.4062506, 0.4999995), (0.4062506, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.4999995), (0.37500063, 0.4999995), (0.37500063, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.4999995), (0.34375066, 0.4999995), (0.34375066, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.4999995), (0.3125007, 0.4999995), (0.3125007, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.4999995), (0.28125072, 0.4999995), (0.28125072, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.4999995), (0.25000075, 0.4999995), (0.25000075, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.4999995), (0.21875077, 0.4999995), (0.21875077, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.4999995), (0.18750082, 0.4999995), (0.18750082, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.4999995), (0.15625085, 0.4999995), (0.15625085, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.4999995), (0.12500088, 0.4999995), (0.12500088, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.4999995), (0.09375091, 0.4999995), (0.09375091, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.4999995), (0.06250094, 0.4999995), (0.06250094, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.4999995), (0.03125097, 0.4999995), (0.03125097, 0.7499992), (0, 0.7499992), (0, 0.4999995), (1, 0.7499992), (1, 0.999999), (0.96875006, 0.999999), (0.96875006, 0.7499992), (0.96875006, 0.7499992), (0.96875006, 0.999999), (0.93750006, 0.999999), (0.93750006, 0.7499992), (0.93750006, 0.7499992), (0.93750006, 0.999999), (0.9062501, 0.999999), (0.9062501, 0.7499992), (0.9062501, 0.7499992), (0.9062501, 0.999999), (0.8750001, 0.999999), (0.8750001, 0.7499992), (0.8750001, 0.7499992), (0.8750001, 0.999999), (0.8437502, 0.999999), (0.8437502, 0.7499992), (0.8437502, 0.7499992), (0.8437502, 0.999999), (0.8125002, 0.999999), (0.8125002, 0.7499992), (0.8125002, 0.7499992), (0.8125002, 0.999999), (0.78125024, 0.999999), (0.78125024, 0.7499992), (0.78125024, 0.7499992), (0.78125024, 0.999999), (0.75000024, 0.999999), (0.75000024, 0.7499992), (0.75000024, 0.7499992), (0.75000024, 0.999999), (0.7187503, 0.999999), (0.7187503, 0.7499992), (0.7187503, 0.7499992), (0.7187503, 0.999999), (0.6875003, 0.999999), (0.6875003, 0.7499992), (0.6875003, 0.7499992), (0.6875003, 0.999999), (0.65625036, 0.999999), (0.65625036, 0.7499992), (0.65625036, 0.7499992), (0.65625036, 0.999999), (0.62500036, 0.999999), (0.62500036, 0.7499992), (0.62500036, 0.7499992), (0.62500036, 0.999999), (0.5937504, 0.999999), (0.5937504, 0.7499992), (0.5937504, 0.7499992), (0.5937504, 0.999999), (0.5625004, 0.999999), (0.5625004, 0.7499992), (0.5625004, 0.7499992), (0.5625004, 0.999999), (0.5312505, 0.999999), (0.5312505, 0.7499992), (0.5312505, 0.7499992), (0.5312505, 0.999999), (0.5000005, 0.999999), (0.5000005, 0.7499992), (0.5000005, 0.7499992), (0.5000005, 0.999999), (0.46875054, 0.999999), (0.46875054, 0.7499992), (0.46875054, 0.7499992), (0.46875054, 0.999999), (0.43750057, 0.999999), (0.43750057, 0.7499992), (0.43750057, 0.7499992), (0.43750057, 0.999999), (0.4062506, 0.999999), (0.4062506, 0.7499992), (0.4062506, 0.7499992), (0.4062506, 0.999999), (0.37500063, 0.999999), (0.37500063, 0.7499992), (0.37500063, 0.7499992), (0.37500063, 0.999999), (0.34375066, 0.999999), (0.34375066, 0.7499992), (0.34375066, 0.7499992), (0.34375066, 0.999999), (0.3125007, 0.999999), (0.3125007, 0.7499992), (0.3125007, 0.7499992), (0.3125007, 0.999999), (0.28125072, 0.999999), (0.28125072, 0.7499992), (0.28125072, 0.7499992), (0.28125072, 0.999999), (0.25000075, 0.999999), (0.25000075, 0.7499992), (0.25000075, 0.7499992), (0.25000075, 0.999999), (0.21875077, 0.999999), (0.21875077, 0.7499992), (0.21875077, 0.7499992), (0.21875077, 0.999999), (0.18750082, 0.999999), (0.18750082, 0.7499992), (0.18750082, 0.7499992), (0.18750082, 0.999999), (0.15625085, 0.999999), (0.15625085, 0.7499992), (0.15625085, 0.7499992), (0.15625085, 0.999999), (0.12500088, 0.999999), (0.12500088, 0.7499992), (0.12500088, 0.7499992), (0.12500088, 0.999999), (0.09375091, 0.999999), (0.09375091, 0.7499992), (0.09375091, 0.7499992), (0.09375091, 0.999999), (0.06250094, 0.999999), (0.06250094, 0.7499992), (0.06250094, 0.7499992), (0.06250094, 0.999999), (0.03125097, 0.999999), (0.03125097, 0.7499992), (0.03125097, 0.7499992), (0.03125097, 0.999999), (0, 0.999999), (0, 0.7499992), (0.5, 0.5), (1, 0.5), (0.9903927, 0.5975451), (0.5, 0.5), (0.9903927, 0.5975451), (0.9619398, 0.6913415), (0.5, 0.5), (0.9619398, 0.6913415), (0.91573495, 0.7777849), (0.5, 0.5), (0.91573495, 0.7777849), (0.85355365, 0.8535531), (0.5, 0.5), (0.85355365, 0.8535531), (0.77778554, 0.9157345), (0.5, 0.5), (0.77778554, 0.9157345), (0.69134223, 0.9619395), (0.5, 0.5), (0.69134223, 0.9619395), (0.59754586, 0.9903925), (0.5, 0.5), (0.59754586, 0.9903925), (0.5000008, 1), (0.5, 0.5), (0.5000008, 1), (0.40245572, 0.9903928), (0.5, 0.5), (0.40245572, 0.9903928), (0.3086592, 0.96194017), (0.5, 0.5), (0.3086592, 0.96194017), (0.22221579, 0.9157354), (0.5, 0.5), (0.22221579, 0.9157354), (0.14644744, 0.85355425), (0.5, 0.5), (0.14644744, 0.85355425), (0.0842659, 0.7777862), (0.5, 0.5), (0.0842659, 0.7777862), (0.03806076, 0.691343), (0.5, 0.5), (0.03806076, 0.691343), (0.009607648, 0.5975466), (0.5, 0.5), (0.009607648, 0.5975466), (2.4674152e-12, 0.50000155), (0.5, 0.5), (2.4674152e-12, 0.50000155), (0.009607034, 0.40245646), (0.5, 0.5), (0.009607034, 0.40245646), (0.03805956, 0.3086599), (0.5, 0.5), (0.03805956, 0.3086599), (0.08426416, 0.22221643), (0.5, 0.5), (0.08426416, 0.22221643), (0.14644521, 0.146448), (0.5, 0.5), (0.14644521, 0.146448), (0.22221316, 0.08426634), (0.5, 0.5), (0.22221316, 0.08426634), (0.30865628, 0.03806106), (0.5, 0.5), (0.30865628, 0.03806106), (0.40245262, 0.0096078), (0.5, 0.5), (0.40245262, 0.0096078), (0.49999765, 5.5516702e-12), (0.5, 0.5), (0.49999765, 5.5516702e-12), (0.59754276, 0.009606881), (0.5, 0.5), (0.59754276, 0.009606881), (0.6913394, 0.038059257), (0.5, 0.5), (0.6913394, 0.038059257), (0.7777829, 0.08426372), (0.5, 0.5), (0.7777829, 0.08426372), (0.85355145, 0.14644466), (0.5, 0.5), (0.85355145, 0.14644466), (0.9157332, 0.22221252), (0.5, 0.5), (0.9157332, 0.22221252), (0.9619386, 0.30865556), (0.5, 0.5), (0.9619386, 0.30865556), (0.990392, 0.40245184), (0.5, 0.5), (0.990392, 0.40245184), (1, 0.5)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (100, -100, -100) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } def Xform "Xform_Unbound" { double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] def Mesh "Sphere" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 64, 32, 32, 64, 33, 1, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 96, 64, 64, 96, 65, 33, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 128, 96, 96, 128, 97, 65, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 160, 128, 128, 160, 129, 97, 129, 161, 162, 130, 130, 162, 163, 131, 131, 163, 164, 132, 132, 164, 165, 133, 133, 165, 166, 134, 134, 166, 167, 135, 135, 167, 168, 136, 136, 168, 169, 137, 137, 169, 170, 138, 138, 170, 171, 139, 139, 171, 172, 140, 140, 172, 173, 141, 141, 173, 174, 142, 142, 174, 175, 143, 143, 175, 176, 144, 144, 176, 177, 145, 145, 177, 178, 146, 146, 178, 179, 147, 147, 179, 180, 148, 148, 180, 181, 149, 149, 181, 182, 150, 150, 182, 183, 151, 151, 183, 184, 152, 152, 184, 185, 153, 153, 185, 186, 154, 154, 186, 187, 155, 155, 187, 188, 156, 156, 188, 189, 157, 157, 189, 190, 158, 158, 190, 191, 159, 159, 191, 192, 160, 160, 192, 161, 129, 161, 193, 194, 162, 162, 194, 195, 163, 163, 195, 196, 164, 164, 196, 197, 165, 165, 197, 198, 166, 166, 198, 199, 167, 167, 199, 200, 168, 168, 200, 201, 169, 169, 201, 202, 170, 170, 202, 203, 171, 171, 203, 204, 172, 172, 204, 205, 173, 173, 205, 206, 174, 174, 206, 207, 175, 175, 207, 208, 176, 176, 208, 209, 177, 177, 209, 210, 178, 178, 210, 211, 179, 179, 211, 212, 180, 180, 212, 213, 181, 181, 213, 214, 182, 182, 214, 215, 183, 183, 215, 216, 184, 184, 216, 217, 185, 185, 217, 218, 186, 186, 218, 219, 187, 187, 219, 220, 188, 188, 220, 221, 189, 189, 221, 222, 190, 190, 222, 223, 191, 191, 223, 224, 192, 192, 224, 193, 161, 193, 225, 226, 194, 194, 226, 227, 195, 195, 227, 228, 196, 196, 228, 229, 197, 197, 229, 230, 198, 198, 230, 231, 199, 199, 231, 232, 200, 200, 232, 233, 201, 201, 233, 234, 202, 202, 234, 235, 203, 203, 235, 236, 204, 204, 236, 237, 205, 205, 237, 238, 206, 206, 238, 239, 207, 207, 239, 240, 208, 208, 240, 241, 209, 209, 241, 242, 210, 210, 242, 243, 211, 211, 243, 244, 212, 212, 244, 245, 213, 213, 245, 246, 214, 214, 246, 247, 215, 215, 247, 248, 216, 216, 248, 249, 217, 217, 249, 250, 218, 218, 250, 251, 219, 219, 251, 252, 220, 220, 252, 253, 221, 221, 253, 254, 222, 222, 254, 255, 223, 223, 255, 256, 224, 224, 256, 225, 193, 225, 257, 258, 226, 226, 258, 259, 227, 227, 259, 260, 228, 228, 260, 261, 229, 229, 261, 262, 230, 230, 262, 263, 231, 231, 263, 264, 232, 232, 264, 265, 233, 233, 265, 266, 234, 234, 266, 267, 235, 235, 267, 268, 236, 236, 268, 269, 237, 237, 269, 270, 238, 238, 270, 271, 239, 239, 271, 272, 240, 240, 272, 273, 241, 241, 273, 274, 242, 242, 274, 275, 243, 243, 275, 276, 244, 244, 276, 277, 245, 245, 277, 278, 246, 246, 278, 279, 247, 247, 279, 280, 248, 248, 280, 281, 249, 249, 281, 282, 250, 250, 282, 283, 251, 251, 283, 284, 252, 252, 284, 285, 253, 253, 285, 286, 254, 254, 286, 287, 255, 255, 287, 288, 256, 256, 288, 257, 225, 257, 289, 290, 258, 258, 290, 291, 259, 259, 291, 292, 260, 260, 292, 293, 261, 261, 293, 294, 262, 262, 294, 295, 263, 263, 295, 296, 264, 264, 296, 297, 265, 265, 297, 298, 266, 266, 298, 299, 267, 267, 299, 300, 268, 268, 300, 301, 269, 269, 301, 302, 270, 270, 302, 303, 271, 271, 303, 304, 272, 272, 304, 305, 273, 273, 305, 306, 274, 274, 306, 307, 275, 275, 307, 308, 276, 276, 308, 309, 277, 277, 309, 310, 278, 278, 310, 311, 279, 279, 311, 312, 280, 280, 312, 313, 281, 281, 313, 314, 282, 282, 314, 315, 283, 283, 315, 316, 284, 284, 316, 317, 285, 285, 317, 318, 286, 286, 318, 319, 287, 287, 319, 320, 288, 288, 320, 289, 257, 289, 321, 322, 290, 290, 322, 323, 291, 291, 323, 324, 292, 292, 324, 325, 293, 293, 325, 326, 294, 294, 326, 327, 295, 295, 327, 328, 296, 296, 328, 329, 297, 297, 329, 330, 298, 298, 330, 331, 299, 299, 331, 332, 300, 300, 332, 333, 301, 301, 333, 334, 302, 302, 334, 335, 303, 303, 335, 336, 304, 304, 336, 337, 305, 305, 337, 338, 306, 306, 338, 339, 307, 307, 339, 340, 308, 308, 340, 341, 309, 309, 341, 342, 310, 310, 342, 343, 311, 311, 343, 344, 312, 312, 344, 345, 313, 313, 345, 346, 314, 314, 346, 347, 315, 315, 347, 348, 316, 316, 348, 349, 317, 317, 349, 350, 318, 318, 350, 351, 319, 319, 351, 352, 320, 320, 352, 321, 289, 321, 353, 354, 322, 322, 354, 355, 323, 323, 355, 356, 324, 324, 356, 357, 325, 325, 357, 358, 326, 326, 358, 359, 327, 327, 359, 360, 328, 328, 360, 361, 329, 329, 361, 362, 330, 330, 362, 363, 331, 331, 363, 364, 332, 332, 364, 365, 333, 333, 365, 366, 334, 334, 366, 367, 335, 335, 367, 368, 336, 336, 368, 369, 337, 337, 369, 370, 338, 338, 370, 371, 339, 339, 371, 372, 340, 340, 372, 373, 341, 341, 373, 374, 342, 342, 374, 375, 343, 343, 375, 376, 344, 344, 376, 377, 345, 345, 377, 378, 346, 346, 378, 379, 347, 347, 379, 380, 348, 348, 380, 381, 349, 349, 381, 382, 350, 350, 382, 383, 351, 351, 383, 384, 352, 352, 384, 353, 321, 353, 385, 386, 354, 354, 386, 387, 355, 355, 387, 388, 356, 356, 388, 389, 357, 357, 389, 390, 358, 358, 390, 391, 359, 359, 391, 392, 360, 360, 392, 393, 361, 361, 393, 394, 362, 362, 394, 395, 363, 363, 395, 396, 364, 364, 396, 397, 365, 365, 397, 398, 366, 366, 398, 399, 367, 367, 399, 400, 368, 368, 400, 401, 369, 369, 401, 402, 370, 370, 402, 403, 371, 371, 403, 404, 372, 372, 404, 405, 373, 373, 405, 406, 374, 374, 406, 407, 375, 375, 407, 408, 376, 376, 408, 409, 377, 377, 409, 410, 378, 378, 410, 411, 379, 379, 411, 412, 380, 380, 412, 413, 381, 381, 413, 414, 382, 382, 414, 415, 383, 383, 415, 416, 384, 384, 416, 385, 353, 385, 417, 418, 386, 386, 418, 419, 387, 387, 419, 420, 388, 388, 420, 421, 389, 389, 421, 422, 390, 390, 422, 423, 391, 391, 423, 424, 392, 392, 424, 425, 393, 393, 425, 426, 394, 394, 426, 427, 395, 395, 427, 428, 396, 396, 428, 429, 397, 397, 429, 430, 398, 398, 430, 431, 399, 399, 431, 432, 400, 400, 432, 433, 401, 401, 433, 434, 402, 402, 434, 435, 403, 403, 435, 436, 404, 404, 436, 437, 405, 405, 437, 438, 406, 406, 438, 439, 407, 407, 439, 440, 408, 408, 440, 441, 409, 409, 441, 442, 410, 410, 442, 443, 411, 411, 443, 444, 412, 412, 444, 445, 413, 413, 445, 446, 414, 414, 446, 447, 415, 415, 447, 448, 416, 416, 448, 417, 385, 417, 449, 450, 418, 418, 450, 451, 419, 419, 451, 452, 420, 420, 452, 453, 421, 421, 453, 454, 422, 422, 454, 455, 423, 423, 455, 456, 424, 424, 456, 457, 425, 425, 457, 458, 426, 426, 458, 459, 427, 427, 459, 460, 428, 428, 460, 461, 429, 429, 461, 462, 430, 430, 462, 463, 431, 431, 463, 464, 432, 432, 464, 465, 433, 433, 465, 466, 434, 434, 466, 467, 435, 435, 467, 468, 436, 436, 468, 469, 437, 437, 469, 470, 438, 438, 470, 471, 439, 439, 471, 472, 440, 440, 472, 473, 441, 441, 473, 474, 442, 442, 474, 475, 443, 443, 475, 476, 444, 444, 476, 477, 445, 445, 477, 478, 446, 446, 478, 479, 447, 447, 479, 480, 448, 448, 480, 449, 417, 481, 450, 449, 481, 451, 450, 481, 452, 451, 481, 453, 452, 481, 454, 453, 481, 455, 454, 481, 456, 455, 481, 457, 456, 481, 458, 457, 481, 459, 458, 481, 460, 459, 481, 461, 460, 481, 462, 461, 481, 463, 462, 481, 464, 463, 481, 465, 464, 481, 466, 465, 481, 467, 466, 481, 468, 467, 481, 469, 468, 481, 470, 469, 481, 471, 470, 481, 472, 471, 481, 473, 472, 481, 474, 473, 481, 475, 474, 481, 476, 475, 481, 477, 476, 481, 478, 477, 481, 479, 478, 481, 480, 479, 481, 449, 480] normal3f[] normals = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (0, -50, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (0, -50, 0), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (0, -50, 0), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (0, -50, 0), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (0, -50, 0), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (0, -50, 0), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (0, -50, 0), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (0, -50, 0), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (0, -50, 0), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (0, -50, 0), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (0, -50, 0), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (0, -50, 0), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (0, -50, 0), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (0, -50, 0), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (0, -50, 0), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (0, -50, 0), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (0, -50, 0), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (0, -50, 0), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (0, -50, 0), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (0, -50, 0), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (0, -50, 0), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (0, -50, 0), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (0, -50, 0), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (0, -50, 0), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (0, -50, 0), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (0, -50, 0), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (0, -50, 0), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (0, -50, 0), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (0, -50, 0), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (0, -50, 0), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (0, -50, 0), (9.567086, -49.039265, -1.9030117), (9.754516, -49.039265, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (9.567086, -49.039265, 1.9030117), (9.567086, -49.039265, 1.9030117), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (9.011998, -49.039265, 3.7328918), (9.011998, -49.039265, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (8.110583, -49.039265, 5.4193187), (8.110583, -49.039265, 5.4193187), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (6.8974843, -49.039265, 6.8974843), (6.8974843, -49.039265, 6.8974843), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (5.4193187, -49.039265, 8.110583), (5.4193187, -49.039265, 8.110583), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -49.039265, 9.011998), (3.7328918, -49.039265, 9.011998), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.9030117, -49.039265, 9.567086), (1.9030117, -49.039265, 9.567086), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (5.9729185e-16, -49.039265, 9.754516), (5.9729185e-16, -49.039265, 9.754516), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-1.9030117, -49.039265, 9.567086), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-3.7328918, -49.039265, 9.011998), (-3.7328918, -49.039265, 9.011998), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-5.4193187, -49.039265, 8.110583), (-5.4193187, -49.039265, 8.110583), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-6.8974843, -49.039265, 6.8974843), (-6.8974843, -49.039265, 6.8974843), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-8.110583, -49.039265, 5.4193187), (-8.110583, -49.039265, 5.4193187), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-9.011998, -49.039265, 3.7328918), (-9.011998, -49.039265, 3.7328918), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.567086, -49.039265, 1.9030117), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-9.754516, -49.039265, 1.1945837e-15), (-9.754516, -49.039265, 1.1945837e-15), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-9.567086, -49.039265, -1.9030117), (-9.567086, -49.039265, -1.9030117), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-9.011998, -49.039265, -3.7328918), (-9.011998, -49.039265, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-8.110583, -49.039265, -5.4193187), (-8.110583, -49.039265, -5.4193187), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-6.8974843, -49.039265, -6.8974843), (-6.8974843, -49.039265, -6.8974843), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-5.4193187, -49.039265, -8.110583), (-5.4193187, -49.039265, -8.110583), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -49.039265, -9.011998), (-3.7328918, -49.039265, -9.011998), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-1.9030117, -49.039265, -9.567086), (-1.9030117, -49.039265, -9.567086), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (-1.7918755e-15, -49.039265, -9.754516), (-1.7918755e-15, -49.039265, -9.754516), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (1.9030117, -49.039265, -9.567086), (1.9030117, -49.039265, -9.567086), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (3.7328918, -49.039265, -9.011998), (3.7328918, -49.039265, -9.011998), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (5.4193187, -49.039265, -8.110583), (5.4193187, -49.039265, -8.110583), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (6.8974843, -49.039265, -6.8974843), (6.8974843, -49.039265, -6.8974843), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (8.110583, -49.039265, -5.4193187), (8.110583, -49.039265, -5.4193187), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (9.011998, -49.039265, -3.7328918), (9.011998, -49.039265, -3.7328918), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (9.567086, -49.039265, -1.9030117), (9.567086, -49.039265, -1.9030117), (18.766514, -46.193977, -3.7328918), (19.134172, -46.193977, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (18.766514, -46.193977, 3.7328918), (18.766514, -46.193977, 3.7328918), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (17.67767, -46.193977, 7.3223305), (17.67767, -46.193977, 7.3223305), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (15.909482, -46.193977, 10.630376), (15.909482, -46.193977, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (13.529902, -46.193977, 13.529902), (13.529902, -46.193977, 13.529902), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -46.193977, 15.909482), (10.630376, -46.193977, 15.909482), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (7.3223305, -46.193977, 17.67767), (7.3223305, -46.193977, 17.67767), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (3.7328918, -46.193977, 18.766514), (3.7328918, -46.193977, 18.766514), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (1.1716301e-15, -46.193977, 19.134172), (1.1716301e-15, -46.193977, 19.134172), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-3.7328918, -46.193977, 18.766514), (-3.7328918, -46.193977, 18.766514), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-7.3223305, -46.193977, 17.67767), (-7.3223305, -46.193977, 17.67767), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-10.630376, -46.193977, 15.909482), (-10.630376, -46.193977, 15.909482), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-13.529902, -46.193977, 13.529902), (-13.529902, -46.193977, 13.529902), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-15.909482, -46.193977, 10.630376), (-15.909482, -46.193977, 10.630376), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-17.67767, -46.193977, 7.3223305), (-17.67767, -46.193977, 7.3223305), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-18.766514, -46.193977, 3.7328918), (-18.766514, -46.193977, 3.7328918), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-19.134172, -46.193977, 2.3432601e-15), (-19.134172, -46.193977, 2.3432601e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-18.766514, -46.193977, -3.7328918), (-18.766514, -46.193977, -3.7328918), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-17.67767, -46.193977, -7.3223305), (-17.67767, -46.193977, -7.3223305), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-15.909482, -46.193977, -10.630376), (-15.909482, -46.193977, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-13.529902, -46.193977, -13.529902), (-13.529902, -46.193977, -13.529902), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -46.193977, -15.909482), (-10.630376, -46.193977, -15.909482), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-7.3223305, -46.193977, -17.67767), (-7.3223305, -46.193977, -17.67767), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-3.7328918, -46.193977, -18.766514), (-3.7328918, -46.193977, -18.766514), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (-3.5148903e-15, -46.193977, -19.134172), (-3.5148903e-15, -46.193977, -19.134172), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (3.7328918, -46.193977, -18.766514), (3.7328918, -46.193977, -18.766514), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (7.3223305, -46.193977, -17.67767), (7.3223305, -46.193977, -17.67767), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (10.630376, -46.193977, -15.909482), (10.630376, -46.193977, -15.909482), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (13.529902, -46.193977, -13.529902), (13.529902, -46.193977, -13.529902), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (15.909482, -46.193977, -10.630376), (15.909482, -46.193977, -10.630376), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (17.67767, -46.193977, -7.3223305), (17.67767, -46.193977, -7.3223305), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (18.766514, -46.193977, -3.7328918), (18.766514, -46.193977, -3.7328918), (27.244755, -41.573483, -5.4193187), (27.778511, -41.573483, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (27.244755, -41.573483, 5.4193187), (27.244755, -41.573483, 5.4193187), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (25.663998, -41.573483, 10.630376), (25.663998, -41.573483, 10.630376), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (23.096989, -41.573483, 15.432914), (23.096989, -41.573483, 15.432914), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -41.573483, 19.642374), (19.642374, -41.573483, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (15.432914, -41.573483, 23.096989), (15.432914, -41.573483, 23.096989), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (10.630376, -41.573483, 25.663998), (10.630376, -41.573483, 25.663998), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (5.4193187, -41.573483, 27.244755), (5.4193187, -41.573483, 27.244755), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (1.7009433e-15, -41.573483, 27.778511), (1.7009433e-15, -41.573483, 27.778511), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-5.4193187, -41.573483, 27.244755), (-5.4193187, -41.573483, 27.244755), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-10.630376, -41.573483, 25.663998), (-10.630376, -41.573483, 25.663998), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-15.432914, -41.573483, 23.096989), (-15.432914, -41.573483, 23.096989), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-19.642374, -41.573483, 19.642374), (-19.642374, -41.573483, 19.642374), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-23.096989, -41.573483, 15.432914), (-23.096989, -41.573483, 15.432914), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-25.663998, -41.573483, 10.630376), (-25.663998, -41.573483, 10.630376), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-27.244755, -41.573483, 5.4193187), (-27.244755, -41.573483, 5.4193187), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.778511, -41.573483, 3.4018865e-15), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-27.244755, -41.573483, -5.4193187), (-27.244755, -41.573483, -5.4193187), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-25.663998, -41.573483, -10.630376), (-25.663998, -41.573483, -10.630376), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-23.096989, -41.573483, -15.432914), (-23.096989, -41.573483, -15.432914), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -41.573483, -19.642374), (-19.642374, -41.573483, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-15.432914, -41.573483, -23.096989), (-15.432914, -41.573483, -23.096989), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-10.630376, -41.573483, -25.663998), (-10.630376, -41.573483, -25.663998), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-5.4193187, -41.573483, -27.244755), (-5.4193187, -41.573483, -27.244755), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (-5.1028297e-15, -41.573483, -27.778511), (-5.1028297e-15, -41.573483, -27.778511), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (5.4193187, -41.573483, -27.244755), (5.4193187, -41.573483, -27.244755), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (10.630376, -41.573483, -25.663998), (10.630376, -41.573483, -25.663998), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (15.432914, -41.573483, -23.096989), (15.432914, -41.573483, -23.096989), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (19.642374, -41.573483, -19.642374), (19.642374, -41.573483, -19.642374), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (23.096989, -41.573483, -15.432914), (23.096989, -41.573483, -15.432914), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (25.663998, -41.573483, -10.630376), (25.663998, -41.573483, -10.630376), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (27.244755, -41.573483, -5.4193187), (27.244755, -41.573483, -5.4193187), (34.675995, -35.35534, -6.8974843), (35.35534, -35.35534, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (34.675995, -35.35534, 6.8974843), (34.675995, -35.35534, 6.8974843), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (32.664074, -35.35534, 13.529902), (32.664074, -35.35534, 13.529902), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -35.35534, 19.642374), (29.39689, -35.35534, 19.642374), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (25, -35.35534, 25), (25, -35.35534, 25), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (19.642374, -35.35534, 29.39689), (19.642374, -35.35534, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (13.529902, -35.35534, 32.664074), (13.529902, -35.35534, 32.664074), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (6.8974843, -35.35534, 34.675995), (6.8974843, -35.35534, 34.675995), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-6.8974843, -35.35534, 34.675995), (-6.8974843, -35.35534, 34.675995), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-13.529902, -35.35534, 32.664074), (-13.529902, -35.35534, 32.664074), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-19.642374, -35.35534, 29.39689), (-19.642374, -35.35534, 29.39689), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-25, -35.35534, 25), (-25, -35.35534, 25), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-29.39689, -35.35534, 19.642374), (-29.39689, -35.35534, 19.642374), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-32.664074, -35.35534, 13.529902), (-32.664074, -35.35534, 13.529902), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-34.675995, -35.35534, 6.8974843), (-34.675995, -35.35534, 6.8974843), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-34.675995, -35.35534, -6.8974843), (-34.675995, -35.35534, -6.8974843), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-32.664074, -35.35534, -13.529902), (-32.664074, -35.35534, -13.529902), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -35.35534, -19.642374), (-29.39689, -35.35534, -19.642374), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-25, -35.35534, -25), (-25, -35.35534, -25), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-19.642374, -35.35534, -29.39689), (-19.642374, -35.35534, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-13.529902, -35.35534, -32.664074), (-13.529902, -35.35534, -32.664074), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-6.8974843, -35.35534, -34.675995), (-6.8974843, -35.35534, -34.675995), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (6.8974843, -35.35534, -34.675995), (6.8974843, -35.35534, -34.675995), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (13.529902, -35.35534, -32.664074), (13.529902, -35.35534, -32.664074), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (19.642374, -35.35534, -29.39689), (19.642374, -35.35534, -29.39689), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (25, -35.35534, -25), (25, -35.35534, -25), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (29.39689, -35.35534, -19.642374), (29.39689, -35.35534, -19.642374), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (32.664074, -35.35534, -13.529902), (32.664074, -35.35534, -13.529902), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (34.675995, -35.35534, -6.8974843), (34.675995, -35.35534, -6.8974843), (40.77466, -27.778511, -8.110583), (41.573483, -27.778511, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (40.77466, -27.778511, 8.110583), (40.77466, -27.778511, 8.110583), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -27.778511, 15.909482), (38.408886, -27.778511, 15.909482), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (34.567085, -27.778511, 23.096989), (34.567085, -27.778511, 23.096989), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (29.39689, -27.778511, 29.39689), (29.39689, -27.778511, 29.39689), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (23.096989, -27.778511, 34.567085), (23.096989, -27.778511, 34.567085), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (15.909482, -27.778511, 38.408886), (15.909482, -27.778511, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (8.110583, -27.778511, 40.77466), (8.110583, -27.778511, 40.77466), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (2.5456415e-15, -27.778511, 41.573483), (2.5456415e-15, -27.778511, 41.573483), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-8.110583, -27.778511, 40.77466), (-8.110583, -27.778511, 40.77466), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-15.909482, -27.778511, 38.408886), (-15.909482, -27.778511, 38.408886), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-23.096989, -27.778511, 34.567085), (-23.096989, -27.778511, 34.567085), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-29.39689, -27.778511, 29.39689), (-29.39689, -27.778511, 29.39689), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-34.567085, -27.778511, 23.096989), (-34.567085, -27.778511, 23.096989), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-38.408886, -27.778511, 15.909482), (-38.408886, -27.778511, 15.909482), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-40.77466, -27.778511, 8.110583), (-40.77466, -27.778511, 8.110583), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-41.573483, -27.778511, 5.091283e-15), (-41.573483, -27.778511, 5.091283e-15), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-40.77466, -27.778511, -8.110583), (-40.77466, -27.778511, -8.110583), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -27.778511, -15.909482), (-38.408886, -27.778511, -15.909482), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-34.567085, -27.778511, -23.096989), (-34.567085, -27.778511, -23.096989), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-29.39689, -27.778511, -29.39689), (-29.39689, -27.778511, -29.39689), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-23.096989, -27.778511, -34.567085), (-23.096989, -27.778511, -34.567085), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-15.909482, -27.778511, -38.408886), (-15.909482, -27.778511, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.110583, -27.778511, -40.77466), (-8.110583, -27.778511, -40.77466), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (-7.6369244e-15, -27.778511, -41.573483), (-7.6369244e-15, -27.778511, -41.573483), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (8.110583, -27.778511, -40.77466), (8.110583, -27.778511, -40.77466), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (15.909482, -27.778511, -38.408886), (15.909482, -27.778511, -38.408886), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (23.096989, -27.778511, -34.567085), (23.096989, -27.778511, -34.567085), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (29.39689, -27.778511, -29.39689), (29.39689, -27.778511, -29.39689), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (34.567085, -27.778511, -23.096989), (34.567085, -27.778511, -23.096989), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (38.408886, -27.778511, -15.909482), (38.408886, -27.778511, -15.909482), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (40.77466, -27.778511, -8.110583), (40.77466, -27.778511, -8.110583), (45.306374, -19.134172, -9.011998), (46.193977, -19.134172, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -19.134172, 9.011998), (45.306374, -19.134172, 9.011998), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (42.67767, -19.134172, 17.67767), (42.67767, -19.134172, 17.67767), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (38.408886, -19.134172, 25.663998), (38.408886, -19.134172, 25.663998), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (32.664074, -19.134172, 32.664074), (32.664074, -19.134172, 32.664074), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (25.663998, -19.134172, 38.408886), (25.663998, -19.134172, 38.408886), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (17.67767, -19.134172, 42.67767), (17.67767, -19.134172, 42.67767), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (9.011998, -19.134172, 45.306374), (9.011998, -19.134172, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (2.8285653e-15, -19.134172, 46.193977), (2.8285653e-15, -19.134172, 46.193977), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.011998, -19.134172, 45.306374), (-9.011998, -19.134172, 45.306374), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-17.67767, -19.134172, 42.67767), (-17.67767, -19.134172, 42.67767), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-25.663998, -19.134172, 38.408886), (-25.663998, -19.134172, 38.408886), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-32.664074, -19.134172, 32.664074), (-32.664074, -19.134172, 32.664074), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-38.408886, -19.134172, 25.663998), (-38.408886, -19.134172, 25.663998), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-42.67767, -19.134172, 17.67767), (-42.67767, -19.134172, 17.67767), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-45.306374, -19.134172, 9.011998), (-45.306374, -19.134172, 9.011998), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-46.193977, -19.134172, 5.6571306e-15), (-46.193977, -19.134172, 5.6571306e-15), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -19.134172, -9.011998), (-45.306374, -19.134172, -9.011998), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-42.67767, -19.134172, -17.67767), (-42.67767, -19.134172, -17.67767), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-38.408886, -19.134172, -25.663998), (-38.408886, -19.134172, -25.663998), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-32.664074, -19.134172, -32.664074), (-32.664074, -19.134172, -32.664074), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-25.663998, -19.134172, -38.408886), (-25.663998, -19.134172, -38.408886), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-17.67767, -19.134172, -42.67767), (-17.67767, -19.134172, -42.67767), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.011998, -19.134172, -45.306374), (-9.011998, -19.134172, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (-8.4856955e-15, -19.134172, -46.193977), (-8.4856955e-15, -19.134172, -46.193977), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (9.011998, -19.134172, -45.306374), (9.011998, -19.134172, -45.306374), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (17.67767, -19.134172, -42.67767), (17.67767, -19.134172, -42.67767), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (25.663998, -19.134172, -38.408886), (25.663998, -19.134172, -38.408886), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (32.664074, -19.134172, -32.664074), (32.664074, -19.134172, -32.664074), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (38.408886, -19.134172, -25.663998), (38.408886, -19.134172, -25.663998), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (42.67767, -19.134172, -17.67767), (42.67767, -19.134172, -17.67767), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (45.306374, -19.134172, -9.011998), (45.306374, -19.134172, -9.011998), (48.09699, -9.754516, -9.567086), (49.039265, -9.754516, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 0, 9.754516), (48.09699, -9.754516, 9.567086), (48.09699, -9.754516, 9.567086), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (45.306374, -9.754516, 18.766514), (45.306374, -9.754516, 18.766514), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (40.77466, -9.754516, 27.244755), (40.77466, -9.754516, 27.244755), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (34.675995, -9.754516, 34.675995), (34.675995, -9.754516, 34.675995), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (27.244755, -9.754516, 40.77466), (27.244755, -9.754516, 40.77466), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (18.766514, -9.754516, 45.306374), (18.766514, -9.754516, 45.306374), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (9.567086, -9.754516, 48.09699), (9.567086, -9.754516, 48.09699), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (3.002789e-15, -9.754516, 49.039265), (3.002789e-15, -9.754516, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.567086, -9.754516, 48.09699), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-18.766514, -9.754516, 45.306374), (-18.766514, -9.754516, 45.306374), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-27.244755, -9.754516, 40.77466), (-27.244755, -9.754516, 40.77466), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-34.675995, -9.754516, 34.675995), (-34.675995, -9.754516, 34.675995), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-40.77466, -9.754516, 27.244755), (-40.77466, -9.754516, 27.244755), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-45.306374, -9.754516, 18.766514), (-45.306374, -9.754516, 18.766514), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-48.09699, -9.754516, 9.567086), (-48.09699, -9.754516, 9.567086), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, -9.754516, 6.005578e-15), (-49.039265, -9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-48.09699, -9.754516, -9.567086), (-48.09699, -9.754516, -9.567086), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-45.306374, -9.754516, -18.766514), (-45.306374, -9.754516, -18.766514), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-40.77466, -9.754516, -27.244755), (-40.77466, -9.754516, -27.244755), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-34.675995, -9.754516, -34.675995), (-34.675995, -9.754516, -34.675995), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-27.244755, -9.754516, -40.77466), (-27.244755, -9.754516, -40.77466), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-18.766514, -9.754516, -45.306374), (-18.766514, -9.754516, -45.306374), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.567086, -9.754516, -48.09699), (-9.567086, -9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (-9.0083665e-15, -9.754516, -49.039265), (-9.0083665e-15, -9.754516, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (9.567086, -9.754516, -48.09699), (9.567086, -9.754516, -48.09699), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (18.766514, -9.754516, -45.306374), (18.766514, -9.754516, -45.306374), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (27.244755, -9.754516, -40.77466), (27.244755, -9.754516, -40.77466), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (34.675995, -9.754516, -34.675995), (34.675995, -9.754516, -34.675995), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (40.77466, -9.754516, -27.244755), (40.77466, -9.754516, -27.244755), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (45.306374, -9.754516, -18.766514), (45.306374, -9.754516, -18.766514), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (48.09699, -9.754516, -9.567086), (48.09699, -9.754516, -9.567086), (49.039265, 0, -9.754516), (50, 0, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (48.09699, 9.754516, -9.567086), (49.039265, 9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (48.09699, 9.754516, 9.567086), (48.09699, 9.754516, 9.567086), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (45.306374, 9.754516, 18.766514), (45.306374, 9.754516, 18.766514), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (40.77466, 9.754516, 27.244755), (40.77466, 9.754516, 27.244755), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (34.675995, 9.754516, 34.675995), (34.675995, 9.754516, 34.675995), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (27.244755, 9.754516, 40.77466), (27.244755, 9.754516, 40.77466), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (18.766514, 9.754516, 45.306374), (18.766514, 9.754516, 45.306374), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (9.567086, 9.754516, 48.09699), (9.567086, 9.754516, 48.09699), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (3.002789e-15, 9.754516, 49.039265), (3.002789e-15, 9.754516, 49.039265), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-9.567086, 9.754516, 48.09699), (-9.567086, 9.754516, 48.09699), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-18.766514, 9.754516, 45.306374), (-18.766514, 9.754516, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-27.244755, 9.754516, 40.77466), (-27.244755, 9.754516, 40.77466), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-34.675995, 9.754516, 34.675995), (-34.675995, 9.754516, 34.675995), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-40.77466, 9.754516, 27.244755), (-40.77466, 9.754516, 27.244755), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 9.754516, 18.766514), (-45.306374, 9.754516, 18.766514), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-48.09699, 9.754516, 9.567086), (-48.09699, 9.754516, 9.567086), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-49.039265, 9.754516, 6.005578e-15), (-49.039265, 9.754516, 6.005578e-15), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-48.09699, 9.754516, -9.567086), (-48.09699, 9.754516, -9.567086), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-45.306374, 9.754516, -18.766514), (-45.306374, 9.754516, -18.766514), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-40.77466, 9.754516, -27.244755), (-40.77466, 9.754516, -27.244755), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-34.675995, 9.754516, -34.675995), (-34.675995, 9.754516, -34.675995), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-27.244755, 9.754516, -40.77466), (-27.244755, 9.754516, -40.77466), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-18.766514, 9.754516, -45.306374), (-18.766514, 9.754516, -45.306374), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.567086, 9.754516, -48.09699), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (-9.0083665e-15, 9.754516, -49.039265), (-9.0083665e-15, 9.754516, -49.039265), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (9.567086, 9.754516, -48.09699), (9.567086, 9.754516, -48.09699), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (18.766514, 9.754516, -45.306374), (18.766514, 9.754516, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (27.244755, 9.754516, -40.77466), (27.244755, 9.754516, -40.77466), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (34.675995, 9.754516, -34.675995), (34.675995, 9.754516, -34.675995), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (40.77466, 9.754516, -27.244755), (40.77466, 9.754516, -27.244755), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 9.754516, -18.766514), (45.306374, 9.754516, -18.766514), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (48.09699, 9.754516, -9.567086), (48.09699, 9.754516, -9.567086), (45.306374, 19.134172, -9.011998), (46.193977, 19.134172, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (45.306374, 19.134172, 9.011998), (45.306374, 19.134172, 9.011998), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (42.67767, 19.134172, 17.67767), (42.67767, 19.134172, 17.67767), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (38.408886, 19.134172, 25.663998), (38.408886, 19.134172, 25.663998), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (32.664074, 19.134172, 32.664074), (32.664074, 19.134172, 32.664074), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (25.663998, 19.134172, 38.408886), (25.663998, 19.134172, 38.408886), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (17.67767, 19.134172, 42.67767), (17.67767, 19.134172, 42.67767), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (9.011998, 19.134172, 45.306374), (9.011998, 19.134172, 45.306374), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (2.8285653e-15, 19.134172, 46.193977), (2.8285653e-15, 19.134172, 46.193977), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-9.011998, 19.134172, 45.306374), (-9.011998, 19.134172, 45.306374), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-17.67767, 19.134172, 42.67767), (-17.67767, 19.134172, 42.67767), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-25.663998, 19.134172, 38.408886), (-25.663998, 19.134172, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-32.664074, 19.134172, 32.664074), (-32.664074, 19.134172, 32.664074), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 19.134172, 25.663998), (-38.408886, 19.134172, 25.663998), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-42.67767, 19.134172, 17.67767), (-42.67767, 19.134172, 17.67767), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-45.306374, 19.134172, 9.011998), (-45.306374, 19.134172, 9.011998), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-46.193977, 19.134172, 5.6571306e-15), (-46.193977, 19.134172, 5.6571306e-15), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-45.306374, 19.134172, -9.011998), (-45.306374, 19.134172, -9.011998), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-42.67767, 19.134172, -17.67767), (-42.67767, 19.134172, -17.67767), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-38.408886, 19.134172, -25.663998), (-38.408886, 19.134172, -25.663998), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-32.664074, 19.134172, -32.664074), (-32.664074, 19.134172, -32.664074), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-25.663998, 19.134172, -38.408886), (-25.663998, 19.134172, -38.408886), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-17.67767, 19.134172, -42.67767), (-17.67767, 19.134172, -42.67767), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-9.011998, 19.134172, -45.306374), (-9.011998, 19.134172, -45.306374), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (-8.4856955e-15, 19.134172, -46.193977), (-8.4856955e-15, 19.134172, -46.193977), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (9.011998, 19.134172, -45.306374), (9.011998, 19.134172, -45.306374), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (17.67767, 19.134172, -42.67767), (17.67767, 19.134172, -42.67767), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (25.663998, 19.134172, -38.408886), (25.663998, 19.134172, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (32.664074, 19.134172, -32.664074), (32.664074, 19.134172, -32.664074), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 19.134172, -25.663998), (38.408886, 19.134172, -25.663998), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (42.67767, 19.134172, -17.67767), (42.67767, 19.134172, -17.67767), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (45.306374, 19.134172, -9.011998), (45.306374, 19.134172, -9.011998), (40.77466, 27.778511, -8.110583), (41.573483, 27.778511, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (40.77466, 27.778511, 8.110583), (40.77466, 27.778511, 8.110583), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (38.408886, 27.778511, 15.909482), (38.408886, 27.778511, 15.909482), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (34.567085, 27.778511, 23.096989), (34.567085, 27.778511, 23.096989), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (29.39689, 27.778511, 29.39689), (29.39689, 27.778511, 29.39689), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (23.096989, 27.778511, 34.567085), (23.096989, 27.778511, 34.567085), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (15.909482, 27.778511, 38.408886), (15.909482, 27.778511, 38.408886), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (8.110583, 27.778511, 40.77466), (8.110583, 27.778511, 40.77466), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (2.5456415e-15, 27.778511, 41.573483), (2.5456415e-15, 27.778511, 41.573483), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-8.110583, 27.778511, 40.77466), (-8.110583, 27.778511, 40.77466), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-15.909482, 27.778511, 38.408886), (-15.909482, 27.778511, 38.408886), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-23.096989, 27.778511, 34.567085), (-23.096989, 27.778511, 34.567085), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 27.778511, 29.39689), (-29.39689, 27.778511, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-34.567085, 27.778511, 23.096989), (-34.567085, 27.778511, 23.096989), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-38.408886, 27.778511, 15.909482), (-38.408886, 27.778511, 15.909482), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-40.77466, 27.778511, 8.110583), (-40.77466, 27.778511, 8.110583), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-41.573483, 27.778511, 5.091283e-15), (-41.573483, 27.778511, 5.091283e-15), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-40.77466, 27.778511, -8.110583), (-40.77466, 27.778511, -8.110583), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-38.408886, 27.778511, -15.909482), (-38.408886, 27.778511, -15.909482), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-34.567085, 27.778511, -23.096989), (-34.567085, 27.778511, -23.096989), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-29.39689, 27.778511, -29.39689), (-29.39689, 27.778511, -29.39689), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-23.096989, 27.778511, -34.567085), (-23.096989, 27.778511, -34.567085), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-15.909482, 27.778511, -38.408886), (-15.909482, 27.778511, -38.408886), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-8.110583, 27.778511, -40.77466), (-8.110583, 27.778511, -40.77466), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (-7.6369244e-15, 27.778511, -41.573483), (-7.6369244e-15, 27.778511, -41.573483), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (8.110583, 27.778511, -40.77466), (8.110583, 27.778511, -40.77466), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (15.909482, 27.778511, -38.408886), (15.909482, 27.778511, -38.408886), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (23.096989, 27.778511, -34.567085), (23.096989, 27.778511, -34.567085), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 27.778511, -29.39689), (29.39689, 27.778511, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (34.567085, 27.778511, -23.096989), (34.567085, 27.778511, -23.096989), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (38.408886, 27.778511, -15.909482), (38.408886, 27.778511, -15.909482), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (40.77466, 27.778511, -8.110583), (40.77466, 27.778511, -8.110583), (34.675995, 35.35534, -6.8974843), (35.35534, 35.35534, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (34.675995, 35.35534, 6.8974843), (34.675995, 35.35534, 6.8974843), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (32.664074, 35.35534, 13.529902), (32.664074, 35.35534, 13.529902), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (29.39689, 35.35534, 19.642374), (29.39689, 35.35534, 19.642374), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (25, 35.35534, 25), (25, 35.35534, 25), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (19.642374, 35.35534, 29.39689), (19.642374, 35.35534, 29.39689), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (13.529902, 35.35534, 32.664074), (13.529902, 35.35534, 32.664074), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (6.8974843, 35.35534, 34.675995), (6.8974843, 35.35534, 34.675995), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-6.8974843, 35.35534, 34.675995), (-6.8974843, 35.35534, 34.675995), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-13.529902, 35.35534, 32.664074), (-13.529902, 35.35534, 32.664074), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 35.35534, 29.39689), (-19.642374, 35.35534, 29.39689), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-25, 35.35534, 25), (-25, 35.35534, 25), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-29.39689, 35.35534, 19.642374), (-29.39689, 35.35534, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-32.664074, 35.35534, 13.529902), (-32.664074, 35.35534, 13.529902), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-34.675995, 35.35534, 6.8974843), (-34.675995, 35.35534, 6.8974843), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-34.675995, 35.35534, -6.8974843), (-34.675995, 35.35534, -6.8974843), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-32.664074, 35.35534, -13.529902), (-32.664074, 35.35534, -13.529902), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-29.39689, 35.35534, -19.642374), (-29.39689, 35.35534, -19.642374), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-25, 35.35534, -25), (-25, 35.35534, -25), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-19.642374, 35.35534, -29.39689), (-19.642374, 35.35534, -29.39689), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-13.529902, 35.35534, -32.664074), (-13.529902, 35.35534, -32.664074), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-6.8974843, 35.35534, -34.675995), (-6.8974843, 35.35534, -34.675995), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (6.8974843, 35.35534, -34.675995), (6.8974843, 35.35534, -34.675995), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (13.529902, 35.35534, -32.664074), (13.529902, 35.35534, -32.664074), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 35.35534, -29.39689), (19.642374, 35.35534, -29.39689), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (25, 35.35534, -25), (25, 35.35534, -25), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (29.39689, 35.35534, -19.642374), (29.39689, 35.35534, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (32.664074, 35.35534, -13.529902), (32.664074, 35.35534, -13.529902), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (34.675995, 35.35534, -6.8974843), (34.675995, 35.35534, -6.8974843), (27.244755, 41.573483, -5.4193187), (27.778511, 41.573483, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (27.244755, 41.573483, 5.4193187), (27.244755, 41.573483, 5.4193187), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (25.663998, 41.573483, 10.630376), (25.663998, 41.573483, 10.630376), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (23.096989, 41.573483, 15.432914), (23.096989, 41.573483, 15.432914), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (19.642374, 41.573483, 19.642374), (19.642374, 41.573483, 19.642374), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (15.432914, 41.573483, 23.096989), (15.432914, 41.573483, 23.096989), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (10.630376, 41.573483, 25.663998), (10.630376, 41.573483, 25.663998), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (5.4193187, 41.573483, 27.244755), (5.4193187, 41.573483, 27.244755), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (1.7009433e-15, 41.573483, 27.778511), (1.7009433e-15, 41.573483, 27.778511), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-5.4193187, 41.573483, 27.244755), (-5.4193187, 41.573483, 27.244755), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 41.573483, 25.663998), (-10.630376, 41.573483, 25.663998), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-15.432914, 41.573483, 23.096989), (-15.432914, 41.573483, 23.096989), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-19.642374, 41.573483, 19.642374), (-19.642374, 41.573483, 19.642374), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-23.096989, 41.573483, 15.432914), (-23.096989, 41.573483, 15.432914), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-25.663998, 41.573483, 10.630376), (-25.663998, 41.573483, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-27.244755, 41.573483, 5.4193187), (-27.244755, 41.573483, 5.4193187), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.778511, 41.573483, 3.4018865e-15), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-27.244755, 41.573483, -5.4193187), (-27.244755, 41.573483, -5.4193187), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-25.663998, 41.573483, -10.630376), (-25.663998, 41.573483, -10.630376), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-23.096989, 41.573483, -15.432914), (-23.096989, 41.573483, -15.432914), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-19.642374, 41.573483, -19.642374), (-19.642374, 41.573483, -19.642374), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-15.432914, 41.573483, -23.096989), (-15.432914, 41.573483, -23.096989), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-10.630376, 41.573483, -25.663998), (-10.630376, 41.573483, -25.663998), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-5.4193187, 41.573483, -27.244755), (-5.4193187, 41.573483, -27.244755), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (-5.1028297e-15, 41.573483, -27.778511), (-5.1028297e-15, 41.573483, -27.778511), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (5.4193187, 41.573483, -27.244755), (5.4193187, 41.573483, -27.244755), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 41.573483, -25.663998), (10.630376, 41.573483, -25.663998), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (15.432914, 41.573483, -23.096989), (15.432914, 41.573483, -23.096989), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (19.642374, 41.573483, -19.642374), (19.642374, 41.573483, -19.642374), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (23.096989, 41.573483, -15.432914), (23.096989, 41.573483, -15.432914), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (25.663998, 41.573483, -10.630376), (25.663998, 41.573483, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (27.244755, 41.573483, -5.4193187), (27.244755, 41.573483, -5.4193187), (18.766514, 46.193977, -3.7328918), (19.134172, 46.193977, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (18.766514, 46.193977, 3.7328918), (18.766514, 46.193977, 3.7328918), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (17.67767, 46.193977, 7.3223305), (17.67767, 46.193977, 7.3223305), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (15.909482, 46.193977, 10.630376), (15.909482, 46.193977, 10.630376), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (13.529902, 46.193977, 13.529902), (13.529902, 46.193977, 13.529902), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (10.630376, 46.193977, 15.909482), (10.630376, 46.193977, 15.909482), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (7.3223305, 46.193977, 17.67767), (7.3223305, 46.193977, 17.67767), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (3.7328918, 46.193977, 18.766514), (3.7328918, 46.193977, 18.766514), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (1.1716301e-15, 46.193977, 19.134172), (1.1716301e-15, 46.193977, 19.134172), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 46.193977, 18.766514), (-3.7328918, 46.193977, 18.766514), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-7.3223305, 46.193977, 17.67767), (-7.3223305, 46.193977, 17.67767), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-10.630376, 46.193977, 15.909482), (-10.630376, 46.193977, 15.909482), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-13.529902, 46.193977, 13.529902), (-13.529902, 46.193977, 13.529902), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-15.909482, 46.193977, 10.630376), (-15.909482, 46.193977, 10.630376), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-17.67767, 46.193977, 7.3223305), (-17.67767, 46.193977, 7.3223305), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-18.766514, 46.193977, 3.7328918), (-18.766514, 46.193977, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-19.134172, 46.193977, 2.3432601e-15), (-19.134172, 46.193977, 2.3432601e-15), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-18.766514, 46.193977, -3.7328918), (-18.766514, 46.193977, -3.7328918), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-17.67767, 46.193977, -7.3223305), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-15.909482, 46.193977, -10.630376), (-15.909482, 46.193977, -10.630376), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-13.529902, 46.193977, -13.529902), (-13.529902, 46.193977, -13.529902), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-10.630376, 46.193977, -15.909482), (-10.630376, 46.193977, -15.909482), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-7.3223305, 46.193977, -17.67767), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 46.193977, -18.766514), (-3.7328918, 46.193977, -18.766514), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (-3.5148903e-15, 46.193977, -19.134172), (-3.5148903e-15, 46.193977, -19.134172), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 46.193977, -18.766514), (3.7328918, 46.193977, -18.766514), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (7.3223305, 46.193977, -17.67767), (7.3223305, 46.193977, -17.67767), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (10.630376, 46.193977, -15.909482), (10.630376, 46.193977, -15.909482), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (13.529902, 46.193977, -13.529902), (13.529902, 46.193977, -13.529902), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (15.909482, 46.193977, -10.630376), (15.909482, 46.193977, -10.630376), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (17.67767, 46.193977, -7.3223305), (17.67767, 46.193977, -7.3223305), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (18.766514, 46.193977, -3.7328918), (18.766514, 46.193977, -3.7328918), (9.567086, 49.039265, -1.9030117), (9.754516, 49.039265, 0), (19.134172, 46.193977, 0), (0, 50, 0), (9.567086, 49.039265, 1.9030117), (9.754516, 49.039265, 0), (0, 50, 0), (9.011998, 49.039265, 3.7328918), (9.567086, 49.039265, 1.9030117), (0, 50, 0), (8.110583, 49.039265, 5.4193187), (9.011998, 49.039265, 3.7328918), (0, 50, 0), (6.8974843, 49.039265, 6.8974843), (8.110583, 49.039265, 5.4193187), (0, 50, 0), (5.4193187, 49.039265, 8.110583), (6.8974843, 49.039265, 6.8974843), (0, 50, 0), (3.7328918, 49.039265, 9.011998), (5.4193187, 49.039265, 8.110583), (0, 50, 0), (1.9030117, 49.039265, 9.567086), (3.7328918, 49.039265, 9.011998), (0, 50, 0), (5.9729185e-16, 49.039265, 9.754516), (1.9030117, 49.039265, 9.567086), (0, 50, 0), (-1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (0, 50, 0), (-3.7328918, 49.039265, 9.011998), (-1.9030117, 49.039265, 9.567086), (0, 50, 0), (-5.4193187, 49.039265, 8.110583), (-3.7328918, 49.039265, 9.011998), (0, 50, 0), (-6.8974843, 49.039265, 6.8974843), (-5.4193187, 49.039265, 8.110583), (0, 50, 0), (-8.110583, 49.039265, 5.4193187), (-6.8974843, 49.039265, 6.8974843), (0, 50, 0), (-9.011998, 49.039265, 3.7328918), (-8.110583, 49.039265, 5.4193187), (0, 50, 0), (-9.567086, 49.039265, 1.9030117), (-9.011998, 49.039265, 3.7328918), (0, 50, 0), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, 1.9030117), (0, 50, 0), (-9.567086, 49.039265, -1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (0, 50, 0), (-9.011998, 49.039265, -3.7328918), (-9.567086, 49.039265, -1.9030117), (0, 50, 0), (-8.110583, 49.039265, -5.4193187), (-9.011998, 49.039265, -3.7328918), (0, 50, 0), (-6.8974843, 49.039265, -6.8974843), (-8.110583, 49.039265, -5.4193187), (0, 50, 0), (-5.4193187, 49.039265, -8.110583), (-6.8974843, 49.039265, -6.8974843), (0, 50, 0), (-3.7328918, 49.039265, -9.011998), (-5.4193187, 49.039265, -8.110583), (0, 50, 0), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 49.039265, -9.011998), (0, 50, 0), (-1.7918755e-15, 49.039265, -9.754516), (-1.9030117, 49.039265, -9.567086), (0, 50, 0), (1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (0, 50, 0), (3.7328918, 49.039265, -9.011998), (1.9030117, 49.039265, -9.567086), (0, 50, 0), (5.4193187, 49.039265, -8.110583), (3.7328918, 49.039265, -9.011998), (0, 50, 0), (6.8974843, 49.039265, -6.8974843), (5.4193187, 49.039265, -8.110583), (0, 50, 0), (8.110583, 49.039265, -5.4193187), (6.8974843, 49.039265, -6.8974843), (0, 50, 0), (9.011998, 49.039265, -3.7328918), (8.110583, 49.039265, -5.4193187), (0, 50, 0), (9.567086, 49.039265, -1.9030117), (9.011998, 49.039265, -3.7328918), (0, 50, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, -1.9030117)] ( interpolation = "faceVarying" ) point3f[] points = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (50, 0, 0), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (0, 50, 0)] float2[] primvars:st = [(0.5, 0), (1, 0.0625), (0.96875, 0.0625), (0.5, 0), (0.96875, 0.0625), (0.9375, 0.0625), (0.5, 0), (0.9375, 0.0625), (0.90625, 0.0625), (0.5, 0), (0.90625, 0.0625), (0.875, 0.0625), (0.5, 0), (0.875, 0.0625), (0.84375, 0.0625), (0.5, 0), (0.84375, 0.0625), (0.8125, 0.0625), (0.5, 0), (0.8125, 0.0625), (0.78125, 0.0625), (0.5, 0), (0.78125, 0.0625), (0.75, 0.0625), (0.5, 0), (0.75, 0.0625), (0.71875, 0.0625), (0.5, 0), (0.71875, 0.0625), (0.6875, 0.0625), (0.5, 0), (0.6875, 0.0625), (0.65625, 0.0625), (0.5, 0), (0.65625, 0.0625), (0.625, 0.0625), (0.5, 0), (0.625, 0.0625), (0.59375, 0.0625), (0.5, 0), (0.59375, 0.0625), (0.5625, 0.0625), (0.5, 0), (0.5625, 0.0625), (0.53125, 0.0625), (0.5, 0), (0.53125, 0.0625), (0.5, 0.0625), (0.5, 0), (0.5, 0.0625), (0.46875, 0.0625), (0.5, 0), (0.46875, 0.0625), (0.4375, 0.0625), (0.5, 0), (0.4375, 0.0625), (0.40625, 0.0625), (0.5, 0), (0.40625, 0.0625), (0.375, 0.0625), (0.5, 0), (0.375, 0.0625), (0.34375, 0.0625), (0.5, 0), (0.34375, 0.0625), (0.3125, 0.0625), (0.5, 0), (0.3125, 0.0625), (0.28125, 0.0625), (0.5, 0), (0.28125, 0.0625), (0.25, 0.0625), (0.5, 0), (0.25, 0.0625), (0.21875, 0.0625), (0.5, 0), (0.21875, 0.0625), (0.1875, 0.0625), (0.5, 0), (0.1875, 0.0625), (0.15625, 0.0625), (0.5, 0), (0.15625, 0.0625), (0.125, 0.0625), (0.5, 0), (0.125, 0.0625), (0.09375, 0.0625), (0.5, 0), (0.09375, 0.0625), (0.0625, 0.0625), (0.5, 0), (0.0625, 0.0625), (0.03125, 0.0625), (0.5, 0), (0.03125, 0.0625), (0, 0.0625), (1, 0.0625), (1, 0.125), (0.96875, 0.125), (0.96875, 0.0625), (0.96875, 0.0625), (0.96875, 0.125), (0.9375, 0.125), (0.9375, 0.0625), (0.9375, 0.0625), (0.9375, 0.125), (0.90625, 0.125), (0.90625, 0.0625), (0.90625, 0.0625), (0.90625, 0.125), (0.875, 0.125), (0.875, 0.0625), (0.875, 0.0625), (0.875, 0.125), (0.84375, 0.125), (0.84375, 0.0625), (0.84375, 0.0625), (0.84375, 0.125), (0.8125, 0.125), (0.8125, 0.0625), (0.8125, 0.0625), (0.8125, 0.125), (0.78125, 0.125), (0.78125, 0.0625), (0.78125, 0.0625), (0.78125, 0.125), (0.75, 0.125), (0.75, 0.0625), (0.75, 0.0625), (0.75, 0.125), (0.71875, 0.125), (0.71875, 0.0625), (0.71875, 0.0625), (0.71875, 0.125), (0.6875, 0.125), (0.6875, 0.0625), (0.6875, 0.0625), (0.6875, 0.125), (0.65625, 0.125), (0.65625, 0.0625), (0.65625, 0.0625), (0.65625, 0.125), (0.625, 0.125), (0.625, 0.0625), (0.625, 0.0625), (0.625, 0.125), (0.59375, 0.125), (0.59375, 0.0625), (0.59375, 0.0625), (0.59375, 0.125), (0.5625, 0.125), (0.5625, 0.0625), (0.5625, 0.0625), (0.5625, 0.125), (0.53125, 0.125), (0.53125, 0.0625), (0.53125, 0.0625), (0.53125, 0.125), (0.5, 0.125), (0.5, 0.0625), (0.5, 0.0625), (0.5, 0.125), (0.46875, 0.125), (0.46875, 0.0625), (0.46875, 0.0625), (0.46875, 0.125), (0.4375, 0.125), (0.4375, 0.0625), (0.4375, 0.0625), (0.4375, 0.125), (0.40625, 0.125), (0.40625, 0.0625), (0.40625, 0.0625), (0.40625, 0.125), (0.375, 0.125), (0.375, 0.0625), (0.375, 0.0625), (0.375, 0.125), (0.34375, 0.125), (0.34375, 0.0625), (0.34375, 0.0625), (0.34375, 0.125), (0.3125, 0.125), (0.3125, 0.0625), (0.3125, 0.0625), (0.3125, 0.125), (0.28125, 0.125), (0.28125, 0.0625), (0.28125, 0.0625), (0.28125, 0.125), (0.25, 0.125), (0.25, 0.0625), (0.25, 0.0625), (0.25, 0.125), (0.21875, 0.125), (0.21875, 0.0625), (0.21875, 0.0625), (0.21875, 0.125), (0.1875, 0.125), (0.1875, 0.0625), (0.1875, 0.0625), (0.1875, 0.125), (0.15625, 0.125), (0.15625, 0.0625), (0.15625, 0.0625), (0.15625, 0.125), (0.125, 0.125), (0.125, 0.0625), (0.125, 0.0625), (0.125, 0.125), (0.09375, 0.125), (0.09375, 0.0625), (0.09375, 0.0625), (0.09375, 0.125), (0.0625, 0.125), (0.0625, 0.0625), (0.0625, 0.0625), (0.0625, 0.125), (0.03125, 0.125), (0.03125, 0.0625), (0.03125, 0.0625), (0.03125, 0.125), (0, 0.125), (0, 0.0625), (1, 0.125), (1, 0.1875), (0.96875, 0.1875), (0.96875, 0.125), (0.96875, 0.125), (0.96875, 0.1875), (0.9375, 0.1875), (0.9375, 0.125), (0.9375, 0.125), (0.9375, 0.1875), (0.90625, 0.1875), (0.90625, 0.125), (0.90625, 0.125), (0.90625, 0.1875), (0.875, 0.1875), (0.875, 0.125), (0.875, 0.125), (0.875, 0.1875), (0.84375, 0.1875), (0.84375, 0.125), (0.84375, 0.125), (0.84375, 0.1875), (0.8125, 0.1875), (0.8125, 0.125), (0.8125, 0.125), (0.8125, 0.1875), (0.78125, 0.1875), (0.78125, 0.125), (0.78125, 0.125), (0.78125, 0.1875), (0.75, 0.1875), (0.75, 0.125), (0.75, 0.125), (0.75, 0.1875), (0.71875, 0.1875), (0.71875, 0.125), (0.71875, 0.125), (0.71875, 0.1875), (0.6875, 0.1875), (0.6875, 0.125), (0.6875, 0.125), (0.6875, 0.1875), (0.65625, 0.1875), (0.65625, 0.125), (0.65625, 0.125), (0.65625, 0.1875), (0.625, 0.1875), (0.625, 0.125), (0.625, 0.125), (0.625, 0.1875), (0.59375, 0.1875), (0.59375, 0.125), (0.59375, 0.125), (0.59375, 0.1875), (0.5625, 0.1875), (0.5625, 0.125), (0.5625, 0.125), (0.5625, 0.1875), (0.53125, 0.1875), (0.53125, 0.125), (0.53125, 0.125), (0.53125, 0.1875), (0.5, 0.1875), (0.5, 0.125), (0.5, 0.125), (0.5, 0.1875), (0.46875, 0.1875), (0.46875, 0.125), (0.46875, 0.125), (0.46875, 0.1875), (0.4375, 0.1875), (0.4375, 0.125), (0.4375, 0.125), (0.4375, 0.1875), (0.40625, 0.1875), (0.40625, 0.125), (0.40625, 0.125), (0.40625, 0.1875), (0.375, 0.1875), (0.375, 0.125), (0.375, 0.125), (0.375, 0.1875), (0.34375, 0.1875), (0.34375, 0.125), (0.34375, 0.125), (0.34375, 0.1875), (0.3125, 0.1875), (0.3125, 0.125), (0.3125, 0.125), (0.3125, 0.1875), (0.28125, 0.1875), (0.28125, 0.125), (0.28125, 0.125), (0.28125, 0.1875), (0.25, 0.1875), (0.25, 0.125), (0.25, 0.125), (0.25, 0.1875), (0.21875, 0.1875), (0.21875, 0.125), (0.21875, 0.125), (0.21875, 0.1875), (0.1875, 0.1875), (0.1875, 0.125), (0.1875, 0.125), (0.1875, 0.1875), (0.15625, 0.1875), (0.15625, 0.125), (0.15625, 0.125), (0.15625, 0.1875), (0.125, 0.1875), (0.125, 0.125), (0.125, 0.125), (0.125, 0.1875), (0.09375, 0.1875), (0.09375, 0.125), (0.09375, 0.125), (0.09375, 0.1875), (0.0625, 0.1875), (0.0625, 0.125), (0.0625, 0.125), (0.0625, 0.1875), (0.03125, 0.1875), (0.03125, 0.125), (0.03125, 0.125), (0.03125, 0.1875), (0, 0.1875), (0, 0.125), (1, 0.1875), (1, 0.25), (0.96875, 0.25), (0.96875, 0.1875), (0.96875, 0.1875), (0.96875, 0.25), (0.9375, 0.25), (0.9375, 0.1875), (0.9375, 0.1875), (0.9375, 0.25), (0.90625, 0.25), (0.90625, 0.1875), (0.90625, 0.1875), (0.90625, 0.25), (0.875, 0.25), (0.875, 0.1875), (0.875, 0.1875), (0.875, 0.25), (0.84375, 0.25), (0.84375, 0.1875), (0.84375, 0.1875), (0.84375, 0.25), (0.8125, 0.25), (0.8125, 0.1875), (0.8125, 0.1875), (0.8125, 0.25), (0.78125, 0.25), (0.78125, 0.1875), (0.78125, 0.1875), (0.78125, 0.25), (0.75, 0.25), (0.75, 0.1875), (0.75, 0.1875), (0.75, 0.25), (0.71875, 0.25), (0.71875, 0.1875), (0.71875, 0.1875), (0.71875, 0.25), (0.6875, 0.25), (0.6875, 0.1875), (0.6875, 0.1875), (0.6875, 0.25), (0.65625, 0.25), (0.65625, 0.1875), (0.65625, 0.1875), (0.65625, 0.25), (0.625, 0.25), (0.625, 0.1875), (0.625, 0.1875), (0.625, 0.25), (0.59375, 0.25), (0.59375, 0.1875), (0.59375, 0.1875), (0.59375, 0.25), (0.5625, 0.25), (0.5625, 0.1875), (0.5625, 0.1875), (0.5625, 0.25), (0.53125, 0.25), (0.53125, 0.1875), (0.53125, 0.1875), (0.53125, 0.25), (0.5, 0.25), (0.5, 0.1875), (0.5, 0.1875), (0.5, 0.25), (0.46875, 0.25), (0.46875, 0.1875), (0.46875, 0.1875), (0.46875, 0.25), (0.4375, 0.25), (0.4375, 0.1875), (0.4375, 0.1875), (0.4375, 0.25), (0.40625, 0.25), (0.40625, 0.1875), (0.40625, 0.1875), (0.40625, 0.25), (0.375, 0.25), (0.375, 0.1875), (0.375, 0.1875), (0.375, 0.25), (0.34375, 0.25), (0.34375, 0.1875), (0.34375, 0.1875), (0.34375, 0.25), (0.3125, 0.25), (0.3125, 0.1875), (0.3125, 0.1875), (0.3125, 0.25), (0.28125, 0.25), (0.28125, 0.1875), (0.28125, 0.1875), (0.28125, 0.25), (0.25, 0.25), (0.25, 0.1875), (0.25, 0.1875), (0.25, 0.25), (0.21875, 0.25), (0.21875, 0.1875), (0.21875, 0.1875), (0.21875, 0.25), (0.1875, 0.25), (0.1875, 0.1875), (0.1875, 0.1875), (0.1875, 0.25), (0.15625, 0.25), (0.15625, 0.1875), (0.15625, 0.1875), (0.15625, 0.25), (0.125, 0.25), (0.125, 0.1875), (0.125, 0.1875), (0.125, 0.25), (0.09375, 0.25), (0.09375, 0.1875), (0.09375, 0.1875), (0.09375, 0.25), (0.0625, 0.25), (0.0625, 0.1875), (0.0625, 0.1875), (0.0625, 0.25), (0.03125, 0.25), (0.03125, 0.1875), (0.03125, 0.1875), (0.03125, 0.25), (0, 0.25), (0, 0.1875), (1, 0.25), (1, 0.3125), (0.96875, 0.3125), (0.96875, 0.25), (0.96875, 0.25), (0.96875, 0.3125), (0.9375, 0.3125), (0.9375, 0.25), (0.9375, 0.25), (0.9375, 0.3125), (0.90625, 0.3125), (0.90625, 0.25), (0.90625, 0.25), (0.90625, 0.3125), (0.875, 0.3125), (0.875, 0.25), (0.875, 0.25), (0.875, 0.3125), (0.84375, 0.3125), (0.84375, 0.25), (0.84375, 0.25), (0.84375, 0.3125), (0.8125, 0.3125), (0.8125, 0.25), (0.8125, 0.25), (0.8125, 0.3125), (0.78125, 0.3125), (0.78125, 0.25), (0.78125, 0.25), (0.78125, 0.3125), (0.75, 0.3125), (0.75, 0.25), (0.75, 0.25), (0.75, 0.3125), (0.71875, 0.3125), (0.71875, 0.25), (0.71875, 0.25), (0.71875, 0.3125), (0.6875, 0.3125), (0.6875, 0.25), (0.6875, 0.25), (0.6875, 0.3125), (0.65625, 0.3125), (0.65625, 0.25), (0.65625, 0.25), (0.65625, 0.3125), (0.625, 0.3125), (0.625, 0.25), (0.625, 0.25), (0.625, 0.3125), (0.59375, 0.3125), (0.59375, 0.25), (0.59375, 0.25), (0.59375, 0.3125), (0.5625, 0.3125), (0.5625, 0.25), (0.5625, 0.25), (0.5625, 0.3125), (0.53125, 0.3125), (0.53125, 0.25), (0.53125, 0.25), (0.53125, 0.3125), (0.5, 0.3125), (0.5, 0.25), (0.5, 0.25), (0.5, 0.3125), (0.46875, 0.3125), (0.46875, 0.25), (0.46875, 0.25), (0.46875, 0.3125), (0.4375, 0.3125), (0.4375, 0.25), (0.4375, 0.25), (0.4375, 0.3125), (0.40625, 0.3125), (0.40625, 0.25), (0.40625, 0.25), (0.40625, 0.3125), (0.375, 0.3125), (0.375, 0.25), (0.375, 0.25), (0.375, 0.3125), (0.34375, 0.3125), (0.34375, 0.25), (0.34375, 0.25), (0.34375, 0.3125), (0.3125, 0.3125), (0.3125, 0.25), (0.3125, 0.25), (0.3125, 0.3125), (0.28125, 0.3125), (0.28125, 0.25), (0.28125, 0.25), (0.28125, 0.3125), (0.25, 0.3125), (0.25, 0.25), (0.25, 0.25), (0.25, 0.3125), (0.21875, 0.3125), (0.21875, 0.25), (0.21875, 0.25), (0.21875, 0.3125), (0.1875, 0.3125), (0.1875, 0.25), (0.1875, 0.25), (0.1875, 0.3125), (0.15625, 0.3125), (0.15625, 0.25), (0.15625, 0.25), (0.15625, 0.3125), (0.125, 0.3125), (0.125, 0.25), (0.125, 0.25), (0.125, 0.3125), (0.09375, 0.3125), (0.09375, 0.25), (0.09375, 0.25), (0.09375, 0.3125), (0.0625, 0.3125), (0.0625, 0.25), (0.0625, 0.25), (0.0625, 0.3125), (0.03125, 0.3125), (0.03125, 0.25), (0.03125, 0.25), (0.03125, 0.3125), (0, 0.3125), (0, 0.25), (1, 0.3125), (1, 0.375), (0.96875, 0.375), (0.96875, 0.3125), (0.96875, 0.3125), (0.96875, 0.375), (0.9375, 0.375), (0.9375, 0.3125), (0.9375, 0.3125), (0.9375, 0.375), (0.90625, 0.375), (0.90625, 0.3125), (0.90625, 0.3125), (0.90625, 0.375), (0.875, 0.375), (0.875, 0.3125), (0.875, 0.3125), (0.875, 0.375), (0.84375, 0.375), (0.84375, 0.3125), (0.84375, 0.3125), (0.84375, 0.375), (0.8125, 0.375), (0.8125, 0.3125), (0.8125, 0.3125), (0.8125, 0.375), (0.78125, 0.375), (0.78125, 0.3125), (0.78125, 0.3125), (0.78125, 0.375), (0.75, 0.375), (0.75, 0.3125), (0.75, 0.3125), (0.75, 0.375), (0.71875, 0.375), (0.71875, 0.3125), (0.71875, 0.3125), (0.71875, 0.375), (0.6875, 0.375), (0.6875, 0.3125), (0.6875, 0.3125), (0.6875, 0.375), (0.65625, 0.375), (0.65625, 0.3125), (0.65625, 0.3125), (0.65625, 0.375), (0.625, 0.375), (0.625, 0.3125), (0.625, 0.3125), (0.625, 0.375), (0.59375, 0.375), (0.59375, 0.3125), (0.59375, 0.3125), (0.59375, 0.375), (0.5625, 0.375), (0.5625, 0.3125), (0.5625, 0.3125), (0.5625, 0.375), (0.53125, 0.375), (0.53125, 0.3125), (0.53125, 0.3125), (0.53125, 0.375), (0.5, 0.375), (0.5, 0.3125), (0.5, 0.3125), (0.5, 0.375), (0.46875, 0.375), (0.46875, 0.3125), (0.46875, 0.3125), (0.46875, 0.375), (0.4375, 0.375), (0.4375, 0.3125), (0.4375, 0.3125), (0.4375, 0.375), (0.40625, 0.375), (0.40625, 0.3125), (0.40625, 0.3125), (0.40625, 0.375), (0.375, 0.375), (0.375, 0.3125), (0.375, 0.3125), (0.375, 0.375), (0.34375, 0.375), (0.34375, 0.3125), (0.34375, 0.3125), (0.34375, 0.375), (0.3125, 0.375), (0.3125, 0.3125), (0.3125, 0.3125), (0.3125, 0.375), (0.28125, 0.375), (0.28125, 0.3125), (0.28125, 0.3125), (0.28125, 0.375), (0.25, 0.375), (0.25, 0.3125), (0.25, 0.3125), (0.25, 0.375), (0.21875, 0.375), (0.21875, 0.3125), (0.21875, 0.3125), (0.21875, 0.375), (0.1875, 0.375), (0.1875, 0.3125), (0.1875, 0.3125), (0.1875, 0.375), (0.15625, 0.375), (0.15625, 0.3125), (0.15625, 0.3125), (0.15625, 0.375), (0.125, 0.375), (0.125, 0.3125), (0.125, 0.3125), (0.125, 0.375), (0.09375, 0.375), (0.09375, 0.3125), (0.09375, 0.3125), (0.09375, 0.375), (0.0625, 0.375), (0.0625, 0.3125), (0.0625, 0.3125), (0.0625, 0.375), (0.03125, 0.375), (0.03125, 0.3125), (0.03125, 0.3125), (0.03125, 0.375), (0, 0.375), (0, 0.3125), (1, 0.375), (1, 0.4375), (0.96875, 0.4375), (0.96875, 0.375), (0.96875, 0.375), (0.96875, 0.4375), (0.9375, 0.4375), (0.9375, 0.375), (0.9375, 0.375), (0.9375, 0.4375), (0.90625, 0.4375), (0.90625, 0.375), (0.90625, 0.375), (0.90625, 0.4375), (0.875, 0.4375), (0.875, 0.375), (0.875, 0.375), (0.875, 0.4375), (0.84375, 0.4375), (0.84375, 0.375), (0.84375, 0.375), (0.84375, 0.4375), (0.8125, 0.4375), (0.8125, 0.375), (0.8125, 0.375), (0.8125, 0.4375), (0.78125, 0.4375), (0.78125, 0.375), (0.78125, 0.375), (0.78125, 0.4375), (0.75, 0.4375), (0.75, 0.375), (0.75, 0.375), (0.75, 0.4375), (0.71875, 0.4375), (0.71875, 0.375), (0.71875, 0.375), (0.71875, 0.4375), (0.6875, 0.4375), (0.6875, 0.375), (0.6875, 0.375), (0.6875, 0.4375), (0.65625, 0.4375), (0.65625, 0.375), (0.65625, 0.375), (0.65625, 0.4375), (0.625, 0.4375), (0.625, 0.375), (0.625, 0.375), (0.625, 0.4375), (0.59375, 0.4375), (0.59375, 0.375), (0.59375, 0.375), (0.59375, 0.4375), (0.5625, 0.4375), (0.5625, 0.375), (0.5625, 0.375), (0.5625, 0.4375), (0.53125, 0.4375), (0.53125, 0.375), (0.53125, 0.375), (0.53125, 0.4375), (0.5, 0.4375), (0.5, 0.375), (0.5, 0.375), (0.5, 0.4375), (0.46875, 0.4375), (0.46875, 0.375), (0.46875, 0.375), (0.46875, 0.4375), (0.4375, 0.4375), (0.4375, 0.375), (0.4375, 0.375), (0.4375, 0.4375), (0.40625, 0.4375), (0.40625, 0.375), (0.40625, 0.375), (0.40625, 0.4375), (0.375, 0.4375), (0.375, 0.375), (0.375, 0.375), (0.375, 0.4375), (0.34375, 0.4375), (0.34375, 0.375), (0.34375, 0.375), (0.34375, 0.4375), (0.3125, 0.4375), (0.3125, 0.375), (0.3125, 0.375), (0.3125, 0.4375), (0.28125, 0.4375), (0.28125, 0.375), (0.28125, 0.375), (0.28125, 0.4375), (0.25, 0.4375), (0.25, 0.375), (0.25, 0.375), (0.25, 0.4375), (0.21875, 0.4375), (0.21875, 0.375), (0.21875, 0.375), (0.21875, 0.4375), (0.1875, 0.4375), (0.1875, 0.375), (0.1875, 0.375), (0.1875, 0.4375), (0.15625, 0.4375), (0.15625, 0.375), (0.15625, 0.375), (0.15625, 0.4375), (0.125, 0.4375), (0.125, 0.375), (0.125, 0.375), (0.125, 0.4375), (0.09375, 0.4375), (0.09375, 0.375), (0.09375, 0.375), (0.09375, 0.4375), (0.0625, 0.4375), (0.0625, 0.375), (0.0625, 0.375), (0.0625, 0.4375), (0.03125, 0.4375), (0.03125, 0.375), (0.03125, 0.375), (0.03125, 0.4375), (0, 0.4375), (0, 0.375), (1, 0.4375), (1, 0.5), (0.96875, 0.5), (0.96875, 0.4375), (0.96875, 0.4375), (0.96875, 0.5), (0.9375, 0.5), (0.9375, 0.4375), (0.9375, 0.4375), (0.9375, 0.5), (0.90625, 0.5), (0.90625, 0.4375), (0.90625, 0.4375), (0.90625, 0.5), (0.875, 0.5), (0.875, 0.4375), (0.875, 0.4375), (0.875, 0.5), (0.84375, 0.5), (0.84375, 0.4375), (0.84375, 0.4375), (0.84375, 0.5), (0.8125, 0.5), (0.8125, 0.4375), (0.8125, 0.4375), (0.8125, 0.5), (0.78125, 0.5), (0.78125, 0.4375), (0.78125, 0.4375), (0.78125, 0.5), (0.75, 0.5), (0.75, 0.4375), (0.75, 0.4375), (0.75, 0.5), (0.71875, 0.5), (0.71875, 0.4375), (0.71875, 0.4375), (0.71875, 0.5), (0.6875, 0.5), (0.6875, 0.4375), (0.6875, 0.4375), (0.6875, 0.5), (0.65625, 0.5), (0.65625, 0.4375), (0.65625, 0.4375), (0.65625, 0.5), (0.625, 0.5), (0.625, 0.4375), (0.625, 0.4375), (0.625, 0.5), (0.59375, 0.5), (0.59375, 0.4375), (0.59375, 0.4375), (0.59375, 0.5), (0.5625, 0.5), (0.5625, 0.4375), (0.5625, 0.4375), (0.5625, 0.5), (0.53125, 0.5), (0.53125, 0.4375), (0.53125, 0.4375), (0.53125, 0.5), (0.5, 0.5), (0.5, 0.4375), (0.5, 0.4375), (0.5, 0.5), (0.46875, 0.5), (0.46875, 0.4375), (0.46875, 0.4375), (0.46875, 0.5), (0.4375, 0.5), (0.4375, 0.4375), (0.4375, 0.4375), (0.4375, 0.5), (0.40625, 0.5), (0.40625, 0.4375), (0.40625, 0.4375), (0.40625, 0.5), (0.375, 0.5), (0.375, 0.4375), (0.375, 0.4375), (0.375, 0.5), (0.34375, 0.5), (0.34375, 0.4375), (0.34375, 0.4375), (0.34375, 0.5), (0.3125, 0.5), (0.3125, 0.4375), (0.3125, 0.4375), (0.3125, 0.5), (0.28125, 0.5), (0.28125, 0.4375), (0.28125, 0.4375), (0.28125, 0.5), (0.25, 0.5), (0.25, 0.4375), (0.25, 0.4375), (0.25, 0.5), (0.21875, 0.5), (0.21875, 0.4375), (0.21875, 0.4375), (0.21875, 0.5), (0.1875, 0.5), (0.1875, 0.4375), (0.1875, 0.4375), (0.1875, 0.5), (0.15625, 0.5), (0.15625, 0.4375), (0.15625, 0.4375), (0.15625, 0.5), (0.125, 0.5), (0.125, 0.4375), (0.125, 0.4375), (0.125, 0.5), (0.09375, 0.5), (0.09375, 0.4375), (0.09375, 0.4375), (0.09375, 0.5), (0.0625, 0.5), (0.0625, 0.4375), (0.0625, 0.4375), (0.0625, 0.5), (0.03125, 0.5), (0.03125, 0.4375), (0.03125, 0.4375), (0.03125, 0.5), (0, 0.5), (0, 0.4375), (1, 0.5), (1, 0.5625), (0.96875, 0.5625), (0.96875, 0.5), (0.96875, 0.5), (0.96875, 0.5625), (0.9375, 0.5625), (0.9375, 0.5), (0.9375, 0.5), (0.9375, 0.5625), (0.90625, 0.5625), (0.90625, 0.5), (0.90625, 0.5), (0.90625, 0.5625), (0.875, 0.5625), (0.875, 0.5), (0.875, 0.5), (0.875, 0.5625), (0.84375, 0.5625), (0.84375, 0.5), (0.84375, 0.5), (0.84375, 0.5625), (0.8125, 0.5625), (0.8125, 0.5), (0.8125, 0.5), (0.8125, 0.5625), (0.78125, 0.5625), (0.78125, 0.5), (0.78125, 0.5), (0.78125, 0.5625), (0.75, 0.5625), (0.75, 0.5), (0.75, 0.5), (0.75, 0.5625), (0.71875, 0.5625), (0.71875, 0.5), (0.71875, 0.5), (0.71875, 0.5625), (0.6875, 0.5625), (0.6875, 0.5), (0.6875, 0.5), (0.6875, 0.5625), (0.65625, 0.5625), (0.65625, 0.5), (0.65625, 0.5), (0.65625, 0.5625), (0.625, 0.5625), (0.625, 0.5), (0.625, 0.5), (0.625, 0.5625), (0.59375, 0.5625), (0.59375, 0.5), (0.59375, 0.5), (0.59375, 0.5625), (0.5625, 0.5625), (0.5625, 0.5), (0.5625, 0.5), (0.5625, 0.5625), (0.53125, 0.5625), (0.53125, 0.5), (0.53125, 0.5), (0.53125, 0.5625), (0.5, 0.5625), (0.5, 0.5), (0.5, 0.5), (0.5, 0.5625), (0.46875, 0.5625), (0.46875, 0.5), (0.46875, 0.5), (0.46875, 0.5625), (0.4375, 0.5625), (0.4375, 0.5), (0.4375, 0.5), (0.4375, 0.5625), (0.40625, 0.5625), (0.40625, 0.5), (0.40625, 0.5), (0.40625, 0.5625), (0.375, 0.5625), (0.375, 0.5), (0.375, 0.5), (0.375, 0.5625), (0.34375, 0.5625), (0.34375, 0.5), (0.34375, 0.5), (0.34375, 0.5625), (0.3125, 0.5625), (0.3125, 0.5), (0.3125, 0.5), (0.3125, 0.5625), (0.28125, 0.5625), (0.28125, 0.5), (0.28125, 0.5), (0.28125, 0.5625), (0.25, 0.5625), (0.25, 0.5), (0.25, 0.5), (0.25, 0.5625), (0.21875, 0.5625), (0.21875, 0.5), (0.21875, 0.5), (0.21875, 0.5625), (0.1875, 0.5625), (0.1875, 0.5), (0.1875, 0.5), (0.1875, 0.5625), (0.15625, 0.5625), (0.15625, 0.5), (0.15625, 0.5), (0.15625, 0.5625), (0.125, 0.5625), (0.125, 0.5), (0.125, 0.5), (0.125, 0.5625), (0.09375, 0.5625), (0.09375, 0.5), (0.09375, 0.5), (0.09375, 0.5625), (0.0625, 0.5625), (0.0625, 0.5), (0.0625, 0.5), (0.0625, 0.5625), (0.03125, 0.5625), (0.03125, 0.5), (0.03125, 0.5), (0.03125, 0.5625), (0, 0.5625), (0, 0.5), (1, 0.5625), (1, 0.625), (0.96875, 0.625), (0.96875, 0.5625), (0.96875, 0.5625), (0.96875, 0.625), (0.9375, 0.625), (0.9375, 0.5625), (0.9375, 0.5625), (0.9375, 0.625), (0.90625, 0.625), (0.90625, 0.5625), (0.90625, 0.5625), (0.90625, 0.625), (0.875, 0.625), (0.875, 0.5625), (0.875, 0.5625), (0.875, 0.625), (0.84375, 0.625), (0.84375, 0.5625), (0.84375, 0.5625), (0.84375, 0.625), (0.8125, 0.625), (0.8125, 0.5625), (0.8125, 0.5625), (0.8125, 0.625), (0.78125, 0.625), (0.78125, 0.5625), (0.78125, 0.5625), (0.78125, 0.625), (0.75, 0.625), (0.75, 0.5625), (0.75, 0.5625), (0.75, 0.625), (0.71875, 0.625), (0.71875, 0.5625), (0.71875, 0.5625), (0.71875, 0.625), (0.6875, 0.625), (0.6875, 0.5625), (0.6875, 0.5625), (0.6875, 0.625), (0.65625, 0.625), (0.65625, 0.5625), (0.65625, 0.5625), (0.65625, 0.625), (0.625, 0.625), (0.625, 0.5625), (0.625, 0.5625), (0.625, 0.625), (0.59375, 0.625), (0.59375, 0.5625), (0.59375, 0.5625), (0.59375, 0.625), (0.5625, 0.625), (0.5625, 0.5625), (0.5625, 0.5625), (0.5625, 0.625), (0.53125, 0.625), (0.53125, 0.5625), (0.53125, 0.5625), (0.53125, 0.625), (0.5, 0.625), (0.5, 0.5625), (0.5, 0.5625), (0.5, 0.625), (0.46875, 0.625), (0.46875, 0.5625), (0.46875, 0.5625), (0.46875, 0.625), (0.4375, 0.625), (0.4375, 0.5625), (0.4375, 0.5625), (0.4375, 0.625), (0.40625, 0.625), (0.40625, 0.5625), (0.40625, 0.5625), (0.40625, 0.625), (0.375, 0.625), (0.375, 0.5625), (0.375, 0.5625), (0.375, 0.625), (0.34375, 0.625), (0.34375, 0.5625), (0.34375, 0.5625), (0.34375, 0.625), (0.3125, 0.625), (0.3125, 0.5625), (0.3125, 0.5625), (0.3125, 0.625), (0.28125, 0.625), (0.28125, 0.5625), (0.28125, 0.5625), (0.28125, 0.625), (0.25, 0.625), (0.25, 0.5625), (0.25, 0.5625), (0.25, 0.625), (0.21875, 0.625), (0.21875, 0.5625), (0.21875, 0.5625), (0.21875, 0.625), (0.1875, 0.625), (0.1875, 0.5625), (0.1875, 0.5625), (0.1875, 0.625), (0.15625, 0.625), (0.15625, 0.5625), (0.15625, 0.5625), (0.15625, 0.625), (0.125, 0.625), (0.125, 0.5625), (0.125, 0.5625), (0.125, 0.625), (0.09375, 0.625), (0.09375, 0.5625), (0.09375, 0.5625), (0.09375, 0.625), (0.0625, 0.625), (0.0625, 0.5625), (0.0625, 0.5625), (0.0625, 0.625), (0.03125, 0.625), (0.03125, 0.5625), (0.03125, 0.5625), (0.03125, 0.625), (0, 0.625), (0, 0.5625), (1, 0.625), (1, 0.6875), (0.96875, 0.6875), (0.96875, 0.625), (0.96875, 0.625), (0.96875, 0.6875), (0.9375, 0.6875), (0.9375, 0.625), (0.9375, 0.625), (0.9375, 0.6875), (0.90625, 0.6875), (0.90625, 0.625), (0.90625, 0.625), (0.90625, 0.6875), (0.875, 0.6875), (0.875, 0.625), (0.875, 0.625), (0.875, 0.6875), (0.84375, 0.6875), (0.84375, 0.625), (0.84375, 0.625), (0.84375, 0.6875), (0.8125, 0.6875), (0.8125, 0.625), (0.8125, 0.625), (0.8125, 0.6875), (0.78125, 0.6875), (0.78125, 0.625), (0.78125, 0.625), (0.78125, 0.6875), (0.75, 0.6875), (0.75, 0.625), (0.75, 0.625), (0.75, 0.6875), (0.71875, 0.6875), (0.71875, 0.625), (0.71875, 0.625), (0.71875, 0.6875), (0.6875, 0.6875), (0.6875, 0.625), (0.6875, 0.625), (0.6875, 0.6875), (0.65625, 0.6875), (0.65625, 0.625), (0.65625, 0.625), (0.65625, 0.6875), (0.625, 0.6875), (0.625, 0.625), (0.625, 0.625), (0.625, 0.6875), (0.59375, 0.6875), (0.59375, 0.625), (0.59375, 0.625), (0.59375, 0.6875), (0.5625, 0.6875), (0.5625, 0.625), (0.5625, 0.625), (0.5625, 0.6875), (0.53125, 0.6875), (0.53125, 0.625), (0.53125, 0.625), (0.53125, 0.6875), (0.5, 0.6875), (0.5, 0.625), (0.5, 0.625), (0.5, 0.6875), (0.46875, 0.6875), (0.46875, 0.625), (0.46875, 0.625), (0.46875, 0.6875), (0.4375, 0.6875), (0.4375, 0.625), (0.4375, 0.625), (0.4375, 0.6875), (0.40625, 0.6875), (0.40625, 0.625), (0.40625, 0.625), (0.40625, 0.6875), (0.375, 0.6875), (0.375, 0.625), (0.375, 0.625), (0.375, 0.6875), (0.34375, 0.6875), (0.34375, 0.625), (0.34375, 0.625), (0.34375, 0.6875), (0.3125, 0.6875), (0.3125, 0.625), (0.3125, 0.625), (0.3125, 0.6875), (0.28125, 0.6875), (0.28125, 0.625), (0.28125, 0.625), (0.28125, 0.6875), (0.25, 0.6875), (0.25, 0.625), (0.25, 0.625), (0.25, 0.6875), (0.21875, 0.6875), (0.21875, 0.625), (0.21875, 0.625), (0.21875, 0.6875), (0.1875, 0.6875), (0.1875, 0.625), (0.1875, 0.625), (0.1875, 0.6875), (0.15625, 0.6875), (0.15625, 0.625), (0.15625, 0.625), (0.15625, 0.6875), (0.125, 0.6875), (0.125, 0.625), (0.125, 0.625), (0.125, 0.6875), (0.09375, 0.6875), (0.09375, 0.625), (0.09375, 0.625), (0.09375, 0.6875), (0.0625, 0.6875), (0.0625, 0.625), (0.0625, 0.625), (0.0625, 0.6875), (0.03125, 0.6875), (0.03125, 0.625), (0.03125, 0.625), (0.03125, 0.6875), (0, 0.6875), (0, 0.625), (1, 0.6875), (1, 0.75), (0.96875, 0.75), (0.96875, 0.6875), (0.96875, 0.6875), (0.96875, 0.75), (0.9375, 0.75), (0.9375, 0.6875), (0.9375, 0.6875), (0.9375, 0.75), (0.90625, 0.75), (0.90625, 0.6875), (0.90625, 0.6875), (0.90625, 0.75), (0.875, 0.75), (0.875, 0.6875), (0.875, 0.6875), (0.875, 0.75), (0.84375, 0.75), (0.84375, 0.6875), (0.84375, 0.6875), (0.84375, 0.75), (0.8125, 0.75), (0.8125, 0.6875), (0.8125, 0.6875), (0.8125, 0.75), (0.78125, 0.75), (0.78125, 0.6875), (0.78125, 0.6875), (0.78125, 0.75), (0.75, 0.75), (0.75, 0.6875), (0.75, 0.6875), (0.75, 0.75), (0.71875, 0.75), (0.71875, 0.6875), (0.71875, 0.6875), (0.71875, 0.75), (0.6875, 0.75), (0.6875, 0.6875), (0.6875, 0.6875), (0.6875, 0.75), (0.65625, 0.75), (0.65625, 0.6875), (0.65625, 0.6875), (0.65625, 0.75), (0.625, 0.75), (0.625, 0.6875), (0.625, 0.6875), (0.625, 0.75), (0.59375, 0.75), (0.59375, 0.6875), (0.59375, 0.6875), (0.59375, 0.75), (0.5625, 0.75), (0.5625, 0.6875), (0.5625, 0.6875), (0.5625, 0.75), (0.53125, 0.75), (0.53125, 0.6875), (0.53125, 0.6875), (0.53125, 0.75), (0.5, 0.75), (0.5, 0.6875), (0.5, 0.6875), (0.5, 0.75), (0.46875, 0.75), (0.46875, 0.6875), (0.46875, 0.6875), (0.46875, 0.75), (0.4375, 0.75), (0.4375, 0.6875), (0.4375, 0.6875), (0.4375, 0.75), (0.40625, 0.75), (0.40625, 0.6875), (0.40625, 0.6875), (0.40625, 0.75), (0.375, 0.75), (0.375, 0.6875), (0.375, 0.6875), (0.375, 0.75), (0.34375, 0.75), (0.34375, 0.6875), (0.34375, 0.6875), (0.34375, 0.75), (0.3125, 0.75), (0.3125, 0.6875), (0.3125, 0.6875), (0.3125, 0.75), (0.28125, 0.75), (0.28125, 0.6875), (0.28125, 0.6875), (0.28125, 0.75), (0.25, 0.75), (0.25, 0.6875), (0.25, 0.6875), (0.25, 0.75), (0.21875, 0.75), (0.21875, 0.6875), (0.21875, 0.6875), (0.21875, 0.75), (0.1875, 0.75), (0.1875, 0.6875), (0.1875, 0.6875), (0.1875, 0.75), (0.15625, 0.75), (0.15625, 0.6875), (0.15625, 0.6875), (0.15625, 0.75), (0.125, 0.75), (0.125, 0.6875), (0.125, 0.6875), (0.125, 0.75), (0.09375, 0.75), (0.09375, 0.6875), (0.09375, 0.6875), (0.09375, 0.75), (0.0625, 0.75), (0.0625, 0.6875), (0.0625, 0.6875), (0.0625, 0.75), (0.03125, 0.75), (0.03125, 0.6875), (0.03125, 0.6875), (0.03125, 0.75), (0, 0.75), (0, 0.6875), (1, 0.75), (1, 0.8125), (0.96875, 0.8125), (0.96875, 0.75), (0.96875, 0.75), (0.96875, 0.8125), (0.9375, 0.8125), (0.9375, 0.75), (0.9375, 0.75), (0.9375, 0.8125), (0.90625, 0.8125), (0.90625, 0.75), (0.90625, 0.75), (0.90625, 0.8125), (0.875, 0.8125), (0.875, 0.75), (0.875, 0.75), (0.875, 0.8125), (0.84375, 0.8125), (0.84375, 0.75), (0.84375, 0.75), (0.84375, 0.8125), (0.8125, 0.8125), (0.8125, 0.75), (0.8125, 0.75), (0.8125, 0.8125), (0.78125, 0.8125), (0.78125, 0.75), (0.78125, 0.75), (0.78125, 0.8125), (0.75, 0.8125), (0.75, 0.75), (0.75, 0.75), (0.75, 0.8125), (0.71875, 0.8125), (0.71875, 0.75), (0.71875, 0.75), (0.71875, 0.8125), (0.6875, 0.8125), (0.6875, 0.75), (0.6875, 0.75), (0.6875, 0.8125), (0.65625, 0.8125), (0.65625, 0.75), (0.65625, 0.75), (0.65625, 0.8125), (0.625, 0.8125), (0.625, 0.75), (0.625, 0.75), (0.625, 0.8125), (0.59375, 0.8125), (0.59375, 0.75), (0.59375, 0.75), (0.59375, 0.8125), (0.5625, 0.8125), (0.5625, 0.75), (0.5625, 0.75), (0.5625, 0.8125), (0.53125, 0.8125), (0.53125, 0.75), (0.53125, 0.75), (0.53125, 0.8125), (0.5, 0.8125), (0.5, 0.75), (0.5, 0.75), (0.5, 0.8125), (0.46875, 0.8125), (0.46875, 0.75), (0.46875, 0.75), (0.46875, 0.8125), (0.4375, 0.8125), (0.4375, 0.75), (0.4375, 0.75), (0.4375, 0.8125), (0.40625, 0.8125), (0.40625, 0.75), (0.40625, 0.75), (0.40625, 0.8125), (0.375, 0.8125), (0.375, 0.75), (0.375, 0.75), (0.375, 0.8125), (0.34375, 0.8125), (0.34375, 0.75), (0.34375, 0.75), (0.34375, 0.8125), (0.3125, 0.8125), (0.3125, 0.75), (0.3125, 0.75), (0.3125, 0.8125), (0.28125, 0.8125), (0.28125, 0.75), (0.28125, 0.75), (0.28125, 0.8125), (0.25, 0.8125), (0.25, 0.75), (0.25, 0.75), (0.25, 0.8125), (0.21875, 0.8125), (0.21875, 0.75), (0.21875, 0.75), (0.21875, 0.8125), (0.1875, 0.8125), (0.1875, 0.75), (0.1875, 0.75), (0.1875, 0.8125), (0.15625, 0.8125), (0.15625, 0.75), (0.15625, 0.75), (0.15625, 0.8125), (0.125, 0.8125), (0.125, 0.75), (0.125, 0.75), (0.125, 0.8125), (0.09375, 0.8125), (0.09375, 0.75), (0.09375, 0.75), (0.09375, 0.8125), (0.0625, 0.8125), (0.0625, 0.75), (0.0625, 0.75), (0.0625, 0.8125), (0.03125, 0.8125), (0.03125, 0.75), (0.03125, 0.75), (0.03125, 0.8125), (0, 0.8125), (0, 0.75), (1, 0.8125), (1, 0.875), (0.96875, 0.875), (0.96875, 0.8125), (0.96875, 0.8125), (0.96875, 0.875), (0.9375, 0.875), (0.9375, 0.8125), (0.9375, 0.8125), (0.9375, 0.875), (0.90625, 0.875), (0.90625, 0.8125), (0.90625, 0.8125), (0.90625, 0.875), (0.875, 0.875), (0.875, 0.8125), (0.875, 0.8125), (0.875, 0.875), (0.84375, 0.875), (0.84375, 0.8125), (0.84375, 0.8125), (0.84375, 0.875), (0.8125, 0.875), (0.8125, 0.8125), (0.8125, 0.8125), (0.8125, 0.875), (0.78125, 0.875), (0.78125, 0.8125), (0.78125, 0.8125), (0.78125, 0.875), (0.75, 0.875), (0.75, 0.8125), (0.75, 0.8125), (0.75, 0.875), (0.71875, 0.875), (0.71875, 0.8125), (0.71875, 0.8125), (0.71875, 0.875), (0.6875, 0.875), (0.6875, 0.8125), (0.6875, 0.8125), (0.6875, 0.875), (0.65625, 0.875), (0.65625, 0.8125), (0.65625, 0.8125), (0.65625, 0.875), (0.625, 0.875), (0.625, 0.8125), (0.625, 0.8125), (0.625, 0.875), (0.59375, 0.875), (0.59375, 0.8125), (0.59375, 0.8125), (0.59375, 0.875), (0.5625, 0.875), (0.5625, 0.8125), (0.5625, 0.8125), (0.5625, 0.875), (0.53125, 0.875), (0.53125, 0.8125), (0.53125, 0.8125), (0.53125, 0.875), (0.5, 0.875), (0.5, 0.8125), (0.5, 0.8125), (0.5, 0.875), (0.46875, 0.875), (0.46875, 0.8125), (0.46875, 0.8125), (0.46875, 0.875), (0.4375, 0.875), (0.4375, 0.8125), (0.4375, 0.8125), (0.4375, 0.875), (0.40625, 0.875), (0.40625, 0.8125), (0.40625, 0.8125), (0.40625, 0.875), (0.375, 0.875), (0.375, 0.8125), (0.375, 0.8125), (0.375, 0.875), (0.34375, 0.875), (0.34375, 0.8125), (0.34375, 0.8125), (0.34375, 0.875), (0.3125, 0.875), (0.3125, 0.8125), (0.3125, 0.8125), (0.3125, 0.875), (0.28125, 0.875), (0.28125, 0.8125), (0.28125, 0.8125), (0.28125, 0.875), (0.25, 0.875), (0.25, 0.8125), (0.25, 0.8125), (0.25, 0.875), (0.21875, 0.875), (0.21875, 0.8125), (0.21875, 0.8125), (0.21875, 0.875), (0.1875, 0.875), (0.1875, 0.8125), (0.1875, 0.8125), (0.1875, 0.875), (0.15625, 0.875), (0.15625, 0.8125), (0.15625, 0.8125), (0.15625, 0.875), (0.125, 0.875), (0.125, 0.8125), (0.125, 0.8125), (0.125, 0.875), (0.09375, 0.875), (0.09375, 0.8125), (0.09375, 0.8125), (0.09375, 0.875), (0.0625, 0.875), (0.0625, 0.8125), (0.0625, 0.8125), (0.0625, 0.875), (0.03125, 0.875), (0.03125, 0.8125), (0.03125, 0.8125), (0.03125, 0.875), (0, 0.875), (0, 0.8125), (1, 0.875), (1, 0.9375), (0.96875, 0.9375), (0.96875, 0.875), (0.96875, 0.875), (0.96875, 0.9375), (0.9375, 0.9375), (0.9375, 0.875), (0.9375, 0.875), (0.9375, 0.9375), (0.90625, 0.9375), (0.90625, 0.875), (0.90625, 0.875), (0.90625, 0.9375), (0.875, 0.9375), (0.875, 0.875), (0.875, 0.875), (0.875, 0.9375), (0.84375, 0.9375), (0.84375, 0.875), (0.84375, 0.875), (0.84375, 0.9375), (0.8125, 0.9375), (0.8125, 0.875), (0.8125, 0.875), (0.8125, 0.9375), (0.78125, 0.9375), (0.78125, 0.875), (0.78125, 0.875), (0.78125, 0.9375), (0.75, 0.9375), (0.75, 0.875), (0.75, 0.875), (0.75, 0.9375), (0.71875, 0.9375), (0.71875, 0.875), (0.71875, 0.875), (0.71875, 0.9375), (0.6875, 0.9375), (0.6875, 0.875), (0.6875, 0.875), (0.6875, 0.9375), (0.65625, 0.9375), (0.65625, 0.875), (0.65625, 0.875), (0.65625, 0.9375), (0.625, 0.9375), (0.625, 0.875), (0.625, 0.875), (0.625, 0.9375), (0.59375, 0.9375), (0.59375, 0.875), (0.59375, 0.875), (0.59375, 0.9375), (0.5625, 0.9375), (0.5625, 0.875), (0.5625, 0.875), (0.5625, 0.9375), (0.53125, 0.9375), (0.53125, 0.875), (0.53125, 0.875), (0.53125, 0.9375), (0.5, 0.9375), (0.5, 0.875), (0.5, 0.875), (0.5, 0.9375), (0.46875, 0.9375), (0.46875, 0.875), (0.46875, 0.875), (0.46875, 0.9375), (0.4375, 0.9375), (0.4375, 0.875), (0.4375, 0.875), (0.4375, 0.9375), (0.40625, 0.9375), (0.40625, 0.875), (0.40625, 0.875), (0.40625, 0.9375), (0.375, 0.9375), (0.375, 0.875), (0.375, 0.875), (0.375, 0.9375), (0.34375, 0.9375), (0.34375, 0.875), (0.34375, 0.875), (0.34375, 0.9375), (0.3125, 0.9375), (0.3125, 0.875), (0.3125, 0.875), (0.3125, 0.9375), (0.28125, 0.9375), (0.28125, 0.875), (0.28125, 0.875), (0.28125, 0.9375), (0.25, 0.9375), (0.25, 0.875), (0.25, 0.875), (0.25, 0.9375), (0.21875, 0.9375), (0.21875, 0.875), (0.21875, 0.875), (0.21875, 0.9375), (0.1875, 0.9375), (0.1875, 0.875), (0.1875, 0.875), (0.1875, 0.9375), (0.15625, 0.9375), (0.15625, 0.875), (0.15625, 0.875), (0.15625, 0.9375), (0.125, 0.9375), (0.125, 0.875), (0.125, 0.875), (0.125, 0.9375), (0.09375, 0.9375), (0.09375, 0.875), (0.09375, 0.875), (0.09375, 0.9375), (0.0625, 0.9375), (0.0625, 0.875), (0.0625, 0.875), (0.0625, 0.9375), (0.03125, 0.9375), (0.03125, 0.875), (0.03125, 0.875), (0.03125, 0.9375), (0, 0.9375), (0, 0.875), (0.5, 1), (0.96875, 0.9375), (1, 0.9375), (0.5, 1), (0.9375, 0.9375), (0.96875, 0.9375), (0.5, 1), (0.90625, 0.9375), (0.9375, 0.9375), (0.5, 1), (0.875, 0.9375), (0.90625, 0.9375), (0.5, 1), (0.84375, 0.9375), (0.875, 0.9375), (0.5, 1), (0.8125, 0.9375), (0.84375, 0.9375), (0.5, 1), (0.78125, 0.9375), (0.8125, 0.9375), (0.5, 1), (0.75, 0.9375), (0.78125, 0.9375), (0.5, 1), (0.71875, 0.9375), (0.75, 0.9375), (0.5, 1), (0.6875, 0.9375), (0.71875, 0.9375), (0.5, 1), (0.65625, 0.9375), (0.6875, 0.9375), (0.5, 1), (0.625, 0.9375), (0.65625, 0.9375), (0.5, 1), (0.59375, 0.9375), (0.625, 0.9375), (0.5, 1), (0.5625, 0.9375), (0.59375, 0.9375), (0.5, 1), (0.53125, 0.9375), (0.5625, 0.9375), (0.5, 1), (0.5, 0.9375), (0.53125, 0.9375), (0.5, 1), (0.46875, 0.9375), (0.5, 0.9375), (0.5, 1), (0.4375, 0.9375), (0.46875, 0.9375), (0.5, 1), (0.40625, 0.9375), (0.4375, 0.9375), (0.5, 1), (0.375, 0.9375), (0.40625, 0.9375), (0.5, 1), (0.34375, 0.9375), (0.375, 0.9375), (0.5, 1), (0.3125, 0.9375), (0.34375, 0.9375), (0.5, 1), (0.28125, 0.9375), (0.3125, 0.9375), (0.5, 1), (0.25, 0.9375), (0.28125, 0.9375), (0.5, 1), (0.21875, 0.9375), (0.25, 0.9375), (0.5, 1), (0.1875, 0.9375), (0.21875, 0.9375), (0.5, 1), (0.15625, 0.9375), (0.1875, 0.9375), (0.5, 1), (0.125, 0.9375), (0.15625, 0.9375), (0.5, 1), (0.09375, 0.9375), (0.125, 0.9375), (0.5, 1), (0.0625, 0.9375), (0.09375, 0.9375), (0.5, 1), (0.03125, 0.9375), (0.0625, 0.9375), (0.5, 1), (0, 0.9375), (0.03125, 0.9375)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1.5, 1.5, 1.5) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } } }
omniverse-code/kit/exts/omni.kit.property.material/data/tests/bound_material.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Cube" { int[] faceVertexCounts = [4, 4, 4, 4, 4, 4] int[] faceVertexIndices = [0, 1, 3, 2, 0, 4, 5, 1, 1, 5, 6, 3, 2, 3, 6, 7, 0, 2, 7, 4, 4, 7, 6, 5] normal3f[] normals = [(0, -1, 0), (0, -1, 0), (0, -1, 0), (0, -1, 0), (0, 0, -1), (0, 0, -1), (0, 0, -1), (0, 0, -1), (1, 0, 0), (1, 0, 0), (1, 0, 0), (1, 0, 0), (0, 0, 1), (0, 0, 1), (0, 0, 1), (0, 0, 1), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (-1, 0, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0), (0, 1, 0)] ( interpolation = "faceVarying" ) point3f[] points = [(-50, -50, -50), (50, -50, -50), (-50, -50, 50), (50, -50, 50), (-50, 50, -50), (50, 50, -50), (50, 50, 50), (-50, 50, 50)] float2[] primvars:st = [(1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (0, 0), (0, 1), (1, 1), (1, 0), (1, 1), (0, 1), (0, 0), (1, 0), (1, 1), (0, 1), (0, 0)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "OmniHair" { token outputs:mdl:displacement.connect = </World/Looks/OmniHair/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniHair/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniHair/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @mtl/OmniHairTest.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniHair" token outputs:out } } } }
omniverse-code/kit/exts/omni.kit.property.material/data/tests/TESTEXPORT2.mdl
mdl 1.7; using m_mdl = "mdl"; import ::state::normal; import ::OmniPBR::OmniPBR; import ::nvidia::support_definitions::lookup_color; import ::base::mono_mode; import ::tex::gamma_mode; import ::tex::wrap_mode; export material Material(*) = ::OmniPBR::OmniPBR( diffuse_color_constant: ::nvidia::support_definitions::lookup_color(texture_2d(), float2(0.f), tex::wrap_repeat, tex::wrap_repeat, float2(0.f, 1.f), float2(0.f, 1.f)), diffuse_texture: texture_2d(), albedo_desaturation: 0.f, albedo_add: 0.f, albedo_brightness: 1.f, diffuse_tint: color(1.f, 1.f, 1.f), reflection_roughness_constant: 0.5f, reflection_roughness_texture_influence: 0.f, reflectionroughness_texture: texture_2d(), metallic_constant: 0.f, metallic_texture_influence: 0.f, metallic_texture: texture_2d(), specular_level: 0.5f, enable_ORM_texture: false, ORM_texture: texture_2d(), ao_to_diffuse: 0.f, ao_texture: texture_2d(), enable_emission: false, emissive_color: color(1.f, 0.100000001f, 0.100000001f), emissive_color_texture: texture_2d(), emissive_mask_texture: texture_2d(), emissive_intensity: 40.f, enable_opacity: false, enable_opacity_texture: false, opacity_constant: 1.f, opacity_texture: texture_2d(), opacity_mode: base::mono_average, opacity_threshold: 0.f, bump_factor: 1.f, normalmap_texture: texture_2d(), detail_bump_factor: 0.300000012f, detail_normalmap_texture: texture_2d(), flip_tangent_u: false, flip_tangent_v: true, project_uvw: false, world_or_object: false, uv_space_index: 0, texture_translate: float2(0.f), texture_rotate: 0.f, texture_scale: float2(1.f), detail_texture_translate: float2(0.f), detail_texture_rotate: 0.f, detail_texture_scale: float2(1.f));
omniverse-code/kit/exts/omni.kit.property.material/data/tests/material_binding.usda
#usda 1.0 ( defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.009999999776482582 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "OmniGlass" { token outputs:mdl:displacement.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniGlass/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniGlass/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniGlass.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass" token outputs:out } } def Material "OmniGlass_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniGlass_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniGlass_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniGlass_Opacity" token outputs:out } } def Material "OmniPBR" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR" token outputs:out } } def Material "OmniPBR_ClearCoat" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_ClearCoat/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_ClearCoat.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_ClearCoat" token outputs:out } } def Material "OmniPBR_ClearCoat_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_ClearCoat_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_ClearCoat_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_ClearCoat_Opacity" token outputs:out } } def Material "OmniPBR_Opacity" { token outputs:mdl:displacement.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/OmniPBR_Opacity/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @OmniPBR_Opacity.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "OmniPBR_Opacity" token outputs:out } } def Material "PreviewSurface" { token outputs:surface.connect = </World/Looks/PreviewSurface/Shader.outputs:surface> def Shader "Shader" { reorder properties = ["inputs:diffuseColor", "inputs:emissiveColor", "inputs:useSpecularWorkflow", "inputs:specularColor", "inputs:metallic", "inputs:roughness", "inputs:clearcoat", "inputs:clearcoatRoughness", "inputs:opacity", "inputs:opacityThreshold", "inputs:ior", "inputs:normal", "inputs:displacement", "inputs:occlusion", "outputs:surface", "outputs:displacement"] uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0.01 color3f inputs:diffuseColor = (0.18, 0.18, 0.18) float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 float inputs:metallic = 0 normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 float inputs:roughness = 0.5 ( customData = { dictionary range = { double max = 1 double min = 0 } } ) color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 ( customData = { dictionary range = { int max = 1 int min = 0 } } ) token outputs:displacement token outputs:surface } } def Material "PreviewSurfaceTexture" { token outputs:mdl:surface.connect = </World/Looks/PreviewSurfaceTexture/PreviewSurfaceTexture.outputs:surface> def Shader "PreviewSurfaceTexture" { uniform token info:id = "UsdPreviewSurface" float inputs:clearcoat = 0 float inputs:clearcoatRoughness = 0 color3f inputs:diffuseColor.connect = </World/Looks/PreviewSurfaceTexture/diffuseColorTex.outputs:rgb> float inputs:displacement = 0 color3f inputs:emissiveColor = (0, 0, 0) float inputs:ior = 1.5 color3f inputs:metallic.connect = </World/Looks/PreviewSurfaceTexture/metallicTex.outputs:rgb> normal3f inputs:normal = (0, 0, 1) float inputs:occlusion = 1 float inputs:opacity = 1 float inputs:opacityThreshold = 0 color3f inputs:roughness.connect = </World/Looks/PreviewSurfaceTexture/roughnessTex.outputs:rgb> color3f inputs:specularColor = (0, 0, 0) int inputs:useSpecularWorkflow = 0 token outputs:surface } def Shader "diffuseColorTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } def Shader "metallicTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } def Shader "roughnessTex" { uniform token info:id = "UsdUVTexture" float4 inputs:fallback = (0, 0, 0, 1) asset inputs:file = @@ color3f outputs:rgb } } } def Cube "Cube" { float3[] extent = [(-50, -50, -50), (50, 50, 50)] rel material:binding = None ( bindMaterialAs = "weakerThanDescendants" ) double size = 100 double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } }
omniverse-code/kit/exts/omni.kit.property.material/data/tests/thumbnail_test.usda
#usda 1.0 ( customLayerData = { dictionary cameraSettings = { dictionary Front = { double3 position = (0, 0, 50000) double radius = 500 } dictionary Perspective = { double3 position = (500.0000000000001, 500.0000000000001, 499.9999999999998) double3 target = (0, 0, 0) } dictionary Right = { double3 position = (-50000, 0, -1.1102230246251565e-11) double radius = 500 } dictionary Top = { double3 position = (-4.329780281177466e-12, 50000, 1.1102230246251565e-11) double radius = 500 } string boundCamera = "/OmniverseKit_Persp" } dictionary omni_layer = { dictionary muteness = { } } dictionary renderSettings = { float3 "rtx:debugView:pixelDebug:textColor" = (0, 1e18, 0) float3 "rtx:dynamicDiffuseGI:probeCounts" = (6, 6, 6) float3 "rtx:dynamicDiffuseGI:probeGridOrigin" = (-210, -250, -10) float3 "rtx:dynamicDiffuseGI:volumeSize" = (600, 440, 300) float3 "rtx:fog:fogColor" = (0.75, 0.75, 0.75) float3 "rtx:iray:environment_dome_ground_position" = (0, 0, 0) float3 "rtx:iray:environment_dome_ground_reflectivity" = (0, 0, 0) float3 "rtx:iray:environment_dome_rotation_axis" = (0, 1, 0) float3 "rtx:lightspeed:material:overrideAlbedo" = (0.5, 0.5, 0.5) float3 "rtx:lightspeed:material:overrideEmissiveColor" = (0.5, 0.5, 0.5) float3 "rtx:post:backgroundZeroAlpha:backgroundDefaultColor" = (0, 0, 0) float3 "rtx:post:colorcorr:contrast" = (1, 1, 1) float3 "rtx:post:colorcorr:gain" = (1, 1, 1) float3 "rtx:post:colorcorr:gamma" = (1, 1, 1) float3 "rtx:post:colorcorr:offset" = (0, 0, 0) float3 "rtx:post:colorcorr:saturation" = (1, 1, 1) float3 "rtx:post:colorgrad:blackpoint" = (0, 0, 0) float3 "rtx:post:colorgrad:contrast" = (1, 1, 1) float3 "rtx:post:colorgrad:gain" = (1, 1, 1) float3 "rtx:post:colorgrad:gamma" = (1, 1, 1) float3 "rtx:post:colorgrad:lift" = (0, 0, 0) float3 "rtx:post:colorgrad:multiply" = (1, 1, 1) float3 "rtx:post:colorgrad:offset" = (0, 0, 0) float3 "rtx:post:colorgrad:whitepoint" = (1, 1, 1) float3 "rtx:post:lensDistortion:lensFocalLengthArray" = (10, 30, 50) float3 "rtx:post:lensFlares:anisoFlareFalloffX" = (450, 475, 500) float3 "rtx:post:lensFlares:anisoFlareFalloffY" = (10, 10, 10) float3 "rtx:post:lensFlares:cutoffPoint" = (2, 2, 2) float3 "rtx:post:lensFlares:haloFlareFalloff" = (10, 10, 10) float3 "rtx:post:lensFlares:haloFlareRadius" = (75, 75, 75) float3 "rtx:post:lensFlares:isotropicFlareFalloff" = (50, 50, 50) float3 "rtx:post:tonemap:whitepoint" = (1, 1, 1) float3 "rtx:raytracing:inscattering:singleScatteringAlbedo" = (0.9, 0.9, 0.9) float3 "rtx:raytracing:inscattering:transmittanceColor" = (0.5, 0.5, 0.5) float3 "rtx:sceneDb:ambientLightColor" = (0.1, 0.1, 0.1) } } defaultPrim = "World" endTimeCode = 100 metersPerUnit = 0.01 startTimeCode = 0 timeCodesPerSecond = 24 upAxis = "Y" ) def Xform "World" { def DistantLight "defaultLight" ( prepend apiSchemas = ["ShapingAPI"] ) { float angle = 1 float intensity = 3000 float shaping:cone:angle = 180 float shaping:cone:softness float shaping:focus color3f shaping:focusTint asset shaping:ies:file double3 xformOp:rotateXYZ = (315, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Mesh "Sphere" { int[] faceVertexCounts = [3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3] int[] faceVertexIndices = [0, 1, 2, 0, 2, 3, 0, 3, 4, 0, 4, 5, 0, 5, 6, 0, 6, 7, 0, 7, 8, 0, 8, 9, 0, 9, 10, 0, 10, 11, 0, 11, 12, 0, 12, 13, 0, 13, 14, 0, 14, 15, 0, 15, 16, 0, 16, 17, 0, 17, 18, 0, 18, 19, 0, 19, 20, 0, 20, 21, 0, 21, 22, 0, 22, 23, 0, 23, 24, 0, 24, 25, 0, 25, 26, 0, 26, 27, 0, 27, 28, 0, 28, 29, 0, 29, 30, 0, 30, 31, 0, 31, 32, 0, 32, 1, 1, 33, 34, 2, 2, 34, 35, 3, 3, 35, 36, 4, 4, 36, 37, 5, 5, 37, 38, 6, 6, 38, 39, 7, 7, 39, 40, 8, 8, 40, 41, 9, 9, 41, 42, 10, 10, 42, 43, 11, 11, 43, 44, 12, 12, 44, 45, 13, 13, 45, 46, 14, 14, 46, 47, 15, 15, 47, 48, 16, 16, 48, 49, 17, 17, 49, 50, 18, 18, 50, 51, 19, 19, 51, 52, 20, 20, 52, 53, 21, 21, 53, 54, 22, 22, 54, 55, 23, 23, 55, 56, 24, 24, 56, 57, 25, 25, 57, 58, 26, 26, 58, 59, 27, 27, 59, 60, 28, 28, 60, 61, 29, 29, 61, 62, 30, 30, 62, 63, 31, 31, 63, 64, 32, 32, 64, 33, 1, 33, 65, 66, 34, 34, 66, 67, 35, 35, 67, 68, 36, 36, 68, 69, 37, 37, 69, 70, 38, 38, 70, 71, 39, 39, 71, 72, 40, 40, 72, 73, 41, 41, 73, 74, 42, 42, 74, 75, 43, 43, 75, 76, 44, 44, 76, 77, 45, 45, 77, 78, 46, 46, 78, 79, 47, 47, 79, 80, 48, 48, 80, 81, 49, 49, 81, 82, 50, 50, 82, 83, 51, 51, 83, 84, 52, 52, 84, 85, 53, 53, 85, 86, 54, 54, 86, 87, 55, 55, 87, 88, 56, 56, 88, 89, 57, 57, 89, 90, 58, 58, 90, 91, 59, 59, 91, 92, 60, 60, 92, 93, 61, 61, 93, 94, 62, 62, 94, 95, 63, 63, 95, 96, 64, 64, 96, 65, 33, 65, 97, 98, 66, 66, 98, 99, 67, 67, 99, 100, 68, 68, 100, 101, 69, 69, 101, 102, 70, 70, 102, 103, 71, 71, 103, 104, 72, 72, 104, 105, 73, 73, 105, 106, 74, 74, 106, 107, 75, 75, 107, 108, 76, 76, 108, 109, 77, 77, 109, 110, 78, 78, 110, 111, 79, 79, 111, 112, 80, 80, 112, 113, 81, 81, 113, 114, 82, 82, 114, 115, 83, 83, 115, 116, 84, 84, 116, 117, 85, 85, 117, 118, 86, 86, 118, 119, 87, 87, 119, 120, 88, 88, 120, 121, 89, 89, 121, 122, 90, 90, 122, 123, 91, 91, 123, 124, 92, 92, 124, 125, 93, 93, 125, 126, 94, 94, 126, 127, 95, 95, 127, 128, 96, 96, 128, 97, 65, 97, 129, 130, 98, 98, 130, 131, 99, 99, 131, 132, 100, 100, 132, 133, 101, 101, 133, 134, 102, 102, 134, 135, 103, 103, 135, 136, 104, 104, 136, 137, 105, 105, 137, 138, 106, 106, 138, 139, 107, 107, 139, 140, 108, 108, 140, 141, 109, 109, 141, 142, 110, 110, 142, 143, 111, 111, 143, 144, 112, 112, 144, 145, 113, 113, 145, 146, 114, 114, 146, 147, 115, 115, 147, 148, 116, 116, 148, 149, 117, 117, 149, 150, 118, 118, 150, 151, 119, 119, 151, 152, 120, 120, 152, 153, 121, 121, 153, 154, 122, 122, 154, 155, 123, 123, 155, 156, 124, 124, 156, 157, 125, 125, 157, 158, 126, 126, 158, 159, 127, 127, 159, 160, 128, 128, 160, 129, 97, 129, 161, 162, 130, 130, 162, 163, 131, 131, 163, 164, 132, 132, 164, 165, 133, 133, 165, 166, 134, 134, 166, 167, 135, 135, 167, 168, 136, 136, 168, 169, 137, 137, 169, 170, 138, 138, 170, 171, 139, 139, 171, 172, 140, 140, 172, 173, 141, 141, 173, 174, 142, 142, 174, 175, 143, 143, 175, 176, 144, 144, 176, 177, 145, 145, 177, 178, 146, 146, 178, 179, 147, 147, 179, 180, 148, 148, 180, 181, 149, 149, 181, 182, 150, 150, 182, 183, 151, 151, 183, 184, 152, 152, 184, 185, 153, 153, 185, 186, 154, 154, 186, 187, 155, 155, 187, 188, 156, 156, 188, 189, 157, 157, 189, 190, 158, 158, 190, 191, 159, 159, 191, 192, 160, 160, 192, 161, 129, 161, 193, 194, 162, 162, 194, 195, 163, 163, 195, 196, 164, 164, 196, 197, 165, 165, 197, 198, 166, 166, 198, 199, 167, 167, 199, 200, 168, 168, 200, 201, 169, 169, 201, 202, 170, 170, 202, 203, 171, 171, 203, 204, 172, 172, 204, 205, 173, 173, 205, 206, 174, 174, 206, 207, 175, 175, 207, 208, 176, 176, 208, 209, 177, 177, 209, 210, 178, 178, 210, 211, 179, 179, 211, 212, 180, 180, 212, 213, 181, 181, 213, 214, 182, 182, 214, 215, 183, 183, 215, 216, 184, 184, 216, 217, 185, 185, 217, 218, 186, 186, 218, 219, 187, 187, 219, 220, 188, 188, 220, 221, 189, 189, 221, 222, 190, 190, 222, 223, 191, 191, 223, 224, 192, 192, 224, 193, 161, 193, 225, 226, 194, 194, 226, 227, 195, 195, 227, 228, 196, 196, 228, 229, 197, 197, 229, 230, 198, 198, 230, 231, 199, 199, 231, 232, 200, 200, 232, 233, 201, 201, 233, 234, 202, 202, 234, 235, 203, 203, 235, 236, 204, 204, 236, 237, 205, 205, 237, 238, 206, 206, 238, 239, 207, 207, 239, 240, 208, 208, 240, 241, 209, 209, 241, 242, 210, 210, 242, 243, 211, 211, 243, 244, 212, 212, 244, 245, 213, 213, 245, 246, 214, 214, 246, 247, 215, 215, 247, 248, 216, 216, 248, 249, 217, 217, 249, 250, 218, 218, 250, 251, 219, 219, 251, 252, 220, 220, 252, 253, 221, 221, 253, 254, 222, 222, 254, 255, 223, 223, 255, 256, 224, 224, 256, 225, 193, 225, 257, 258, 226, 226, 258, 259, 227, 227, 259, 260, 228, 228, 260, 261, 229, 229, 261, 262, 230, 230, 262, 263, 231, 231, 263, 264, 232, 232, 264, 265, 233, 233, 265, 266, 234, 234, 266, 267, 235, 235, 267, 268, 236, 236, 268, 269, 237, 237, 269, 270, 238, 238, 270, 271, 239, 239, 271, 272, 240, 240, 272, 273, 241, 241, 273, 274, 242, 242, 274, 275, 243, 243, 275, 276, 244, 244, 276, 277, 245, 245, 277, 278, 246, 246, 278, 279, 247, 247, 279, 280, 248, 248, 280, 281, 249, 249, 281, 282, 250, 250, 282, 283, 251, 251, 283, 284, 252, 252, 284, 285, 253, 253, 285, 286, 254, 254, 286, 287, 255, 255, 287, 288, 256, 256, 288, 257, 225, 257, 289, 290, 258, 258, 290, 291, 259, 259, 291, 292, 260, 260, 292, 293, 261, 261, 293, 294, 262, 262, 294, 295, 263, 263, 295, 296, 264, 264, 296, 297, 265, 265, 297, 298, 266, 266, 298, 299, 267, 267, 299, 300, 268, 268, 300, 301, 269, 269, 301, 302, 270, 270, 302, 303, 271, 271, 303, 304, 272, 272, 304, 305, 273, 273, 305, 306, 274, 274, 306, 307, 275, 275, 307, 308, 276, 276, 308, 309, 277, 277, 309, 310, 278, 278, 310, 311, 279, 279, 311, 312, 280, 280, 312, 313, 281, 281, 313, 314, 282, 282, 314, 315, 283, 283, 315, 316, 284, 284, 316, 317, 285, 285, 317, 318, 286, 286, 318, 319, 287, 287, 319, 320, 288, 288, 320, 289, 257, 289, 321, 322, 290, 290, 322, 323, 291, 291, 323, 324, 292, 292, 324, 325, 293, 293, 325, 326, 294, 294, 326, 327, 295, 295, 327, 328, 296, 296, 328, 329, 297, 297, 329, 330, 298, 298, 330, 331, 299, 299, 331, 332, 300, 300, 332, 333, 301, 301, 333, 334, 302, 302, 334, 335, 303, 303, 335, 336, 304, 304, 336, 337, 305, 305, 337, 338, 306, 306, 338, 339, 307, 307, 339, 340, 308, 308, 340, 341, 309, 309, 341, 342, 310, 310, 342, 343, 311, 311, 343, 344, 312, 312, 344, 345, 313, 313, 345, 346, 314, 314, 346, 347, 315, 315, 347, 348, 316, 316, 348, 349, 317, 317, 349, 350, 318, 318, 350, 351, 319, 319, 351, 352, 320, 320, 352, 321, 289, 321, 353, 354, 322, 322, 354, 355, 323, 323, 355, 356, 324, 324, 356, 357, 325, 325, 357, 358, 326, 326, 358, 359, 327, 327, 359, 360, 328, 328, 360, 361, 329, 329, 361, 362, 330, 330, 362, 363, 331, 331, 363, 364, 332, 332, 364, 365, 333, 333, 365, 366, 334, 334, 366, 367, 335, 335, 367, 368, 336, 336, 368, 369, 337, 337, 369, 370, 338, 338, 370, 371, 339, 339, 371, 372, 340, 340, 372, 373, 341, 341, 373, 374, 342, 342, 374, 375, 343, 343, 375, 376, 344, 344, 376, 377, 345, 345, 377, 378, 346, 346, 378, 379, 347, 347, 379, 380, 348, 348, 380, 381, 349, 349, 381, 382, 350, 350, 382, 383, 351, 351, 383, 384, 352, 352, 384, 353, 321, 353, 385, 386, 354, 354, 386, 387, 355, 355, 387, 388, 356, 356, 388, 389, 357, 357, 389, 390, 358, 358, 390, 391, 359, 359, 391, 392, 360, 360, 392, 393, 361, 361, 393, 394, 362, 362, 394, 395, 363, 363, 395, 396, 364, 364, 396, 397, 365, 365, 397, 398, 366, 366, 398, 399, 367, 367, 399, 400, 368, 368, 400, 401, 369, 369, 401, 402, 370, 370, 402, 403, 371, 371, 403, 404, 372, 372, 404, 405, 373, 373, 405, 406, 374, 374, 406, 407, 375, 375, 407, 408, 376, 376, 408, 409, 377, 377, 409, 410, 378, 378, 410, 411, 379, 379, 411, 412, 380, 380, 412, 413, 381, 381, 413, 414, 382, 382, 414, 415, 383, 383, 415, 416, 384, 384, 416, 385, 353, 385, 417, 418, 386, 386, 418, 419, 387, 387, 419, 420, 388, 388, 420, 421, 389, 389, 421, 422, 390, 390, 422, 423, 391, 391, 423, 424, 392, 392, 424, 425, 393, 393, 425, 426, 394, 394, 426, 427, 395, 395, 427, 428, 396, 396, 428, 429, 397, 397, 429, 430, 398, 398, 430, 431, 399, 399, 431, 432, 400, 400, 432, 433, 401, 401, 433, 434, 402, 402, 434, 435, 403, 403, 435, 436, 404, 404, 436, 437, 405, 405, 437, 438, 406, 406, 438, 439, 407, 407, 439, 440, 408, 408, 440, 441, 409, 409, 441, 442, 410, 410, 442, 443, 411, 411, 443, 444, 412, 412, 444, 445, 413, 413, 445, 446, 414, 414, 446, 447, 415, 415, 447, 448, 416, 416, 448, 417, 385, 417, 449, 450, 418, 418, 450, 451, 419, 419, 451, 452, 420, 420, 452, 453, 421, 421, 453, 454, 422, 422, 454, 455, 423, 423, 455, 456, 424, 424, 456, 457, 425, 425, 457, 458, 426, 426, 458, 459, 427, 427, 459, 460, 428, 428, 460, 461, 429, 429, 461, 462, 430, 430, 462, 463, 431, 431, 463, 464, 432, 432, 464, 465, 433, 433, 465, 466, 434, 434, 466, 467, 435, 435, 467, 468, 436, 436, 468, 469, 437, 437, 469, 470, 438, 438, 470, 471, 439, 439, 471, 472, 440, 440, 472, 473, 441, 441, 473, 474, 442, 442, 474, 475, 443, 443, 475, 476, 444, 444, 476, 477, 445, 445, 477, 478, 446, 446, 478, 479, 447, 447, 479, 480, 448, 448, 480, 449, 417, 481, 450, 449, 481, 451, 450, 481, 452, 451, 481, 453, 452, 481, 454, 453, 481, 455, 454, 481, 456, 455, 481, 457, 456, 481, 458, 457, 481, 459, 458, 481, 460, 459, 481, 461, 460, 481, 462, 461, 481, 463, 462, 481, 464, 463, 481, 465, 464, 481, 466, 465, 481, 467, 466, 481, 468, 467, 481, 469, 468, 481, 470, 469, 481, 471, 470, 481, 472, 471, 481, 473, 472, 481, 474, 473, 481, 475, 474, 481, 476, 475, 481, 477, 476, 481, 478, 477, 481, 479, 478, 481, 480, 479, 481, 449, 480] rel material:binding = </World/Looks/Material> ( bindMaterialAs = "weakerThanDescendants" ) normal3f[] normals = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (0, -50, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (0, -50, 0), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (0, -50, 0), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (0, -50, 0), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (0, -50, 0), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (0, -50, 0), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (0, -50, 0), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (0, -50, 0), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (0, -50, 0), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (0, -50, 0), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (0, -50, 0), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (0, -50, 0), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (0, -50, 0), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (0, -50, 0), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (0, -50, 0), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (0, -50, 0), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (0, -50, 0), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (0, -50, 0), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (0, -50, 0), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (0, -50, 0), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (0, -50, 0), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (0, -50, 0), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (0, -50, 0), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (0, -50, 0), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (0, -50, 0), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (0, -50, 0), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (0, -50, 0), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (0, -50, 0), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (0, -50, 0), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (0, -50, 0), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (0, -50, 0), (9.567086, -49.039265, -1.9030117), (9.754516, -49.039265, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (9.567086, -49.039265, 1.9030117), (9.567086, -49.039265, 1.9030117), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (9.011998, -49.039265, 3.7328918), (9.011998, -49.039265, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (8.110583, -49.039265, 5.4193187), (8.110583, -49.039265, 5.4193187), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (6.8974843, -49.039265, 6.8974843), (6.8974843, -49.039265, 6.8974843), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (5.4193187, -49.039265, 8.110583), (5.4193187, -49.039265, 8.110583), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -49.039265, 9.011998), (3.7328918, -49.039265, 9.011998), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.9030117, -49.039265, 9.567086), (1.9030117, -49.039265, 9.567086), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (5.9729185e-16, -49.039265, 9.754516), (5.9729185e-16, -49.039265, 9.754516), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-1.9030117, -49.039265, 9.567086), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-3.7328918, -49.039265, 9.011998), (-3.7328918, -49.039265, 9.011998), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-5.4193187, -49.039265, 8.110583), (-5.4193187, -49.039265, 8.110583), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-6.8974843, -49.039265, 6.8974843), (-6.8974843, -49.039265, 6.8974843), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-8.110583, -49.039265, 5.4193187), (-8.110583, -49.039265, 5.4193187), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-9.011998, -49.039265, 3.7328918), (-9.011998, -49.039265, 3.7328918), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.567086, -49.039265, 1.9030117), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-9.754516, -49.039265, 1.1945837e-15), (-9.754516, -49.039265, 1.1945837e-15), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-9.567086, -49.039265, -1.9030117), (-9.567086, -49.039265, -1.9030117), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-9.011998, -49.039265, -3.7328918), (-9.011998, -49.039265, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-8.110583, -49.039265, -5.4193187), (-8.110583, -49.039265, -5.4193187), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-6.8974843, -49.039265, -6.8974843), (-6.8974843, -49.039265, -6.8974843), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-5.4193187, -49.039265, -8.110583), (-5.4193187, -49.039265, -8.110583), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -49.039265, -9.011998), (-3.7328918, -49.039265, -9.011998), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-1.9030117, -49.039265, -9.567086), (-1.9030117, -49.039265, -9.567086), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (-1.7918755e-15, -49.039265, -9.754516), (-1.7918755e-15, -49.039265, -9.754516), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (1.9030117, -49.039265, -9.567086), (1.9030117, -49.039265, -9.567086), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (3.7328918, -49.039265, -9.011998), (3.7328918, -49.039265, -9.011998), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (5.4193187, -49.039265, -8.110583), (5.4193187, -49.039265, -8.110583), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (6.8974843, -49.039265, -6.8974843), (6.8974843, -49.039265, -6.8974843), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (8.110583, -49.039265, -5.4193187), (8.110583, -49.039265, -5.4193187), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (9.011998, -49.039265, -3.7328918), (9.011998, -49.039265, -3.7328918), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (9.567086, -49.039265, -1.9030117), (9.567086, -49.039265, -1.9030117), (18.766514, -46.193977, -3.7328918), (19.134172, -46.193977, 0), (9.754516, -49.039265, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (18.766514, -46.193977, 3.7328918), (18.766514, -46.193977, 3.7328918), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (17.67767, -46.193977, 7.3223305), (17.67767, -46.193977, 7.3223305), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (15.909482, -46.193977, 10.630376), (15.909482, -46.193977, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (13.529902, -46.193977, 13.529902), (13.529902, -46.193977, 13.529902), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -46.193977, 15.909482), (10.630376, -46.193977, 15.909482), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (7.3223305, -46.193977, 17.67767), (7.3223305, -46.193977, 17.67767), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (3.7328918, -46.193977, 18.766514), (3.7328918, -46.193977, 18.766514), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (1.1716301e-15, -46.193977, 19.134172), (1.1716301e-15, -46.193977, 19.134172), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-3.7328918, -46.193977, 18.766514), (-3.7328918, -46.193977, 18.766514), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-7.3223305, -46.193977, 17.67767), (-7.3223305, -46.193977, 17.67767), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-10.630376, -46.193977, 15.909482), (-10.630376, -46.193977, 15.909482), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-13.529902, -46.193977, 13.529902), (-13.529902, -46.193977, 13.529902), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-15.909482, -46.193977, 10.630376), (-15.909482, -46.193977, 10.630376), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-17.67767, -46.193977, 7.3223305), (-17.67767, -46.193977, 7.3223305), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-18.766514, -46.193977, 3.7328918), (-18.766514, -46.193977, 3.7328918), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-19.134172, -46.193977, 2.3432601e-15), (-19.134172, -46.193977, 2.3432601e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-18.766514, -46.193977, -3.7328918), (-18.766514, -46.193977, -3.7328918), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-17.67767, -46.193977, -7.3223305), (-17.67767, -46.193977, -7.3223305), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-15.909482, -46.193977, -10.630376), (-15.909482, -46.193977, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-13.529902, -46.193977, -13.529902), (-13.529902, -46.193977, -13.529902), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -46.193977, -15.909482), (-10.630376, -46.193977, -15.909482), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-7.3223305, -46.193977, -17.67767), (-7.3223305, -46.193977, -17.67767), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-3.7328918, -46.193977, -18.766514), (-3.7328918, -46.193977, -18.766514), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (-3.5148903e-15, -46.193977, -19.134172), (-3.5148903e-15, -46.193977, -19.134172), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (3.7328918, -46.193977, -18.766514), (3.7328918, -46.193977, -18.766514), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (7.3223305, -46.193977, -17.67767), (7.3223305, -46.193977, -17.67767), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (10.630376, -46.193977, -15.909482), (10.630376, -46.193977, -15.909482), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (13.529902, -46.193977, -13.529902), (13.529902, -46.193977, -13.529902), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (15.909482, -46.193977, -10.630376), (15.909482, -46.193977, -10.630376), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (17.67767, -46.193977, -7.3223305), (17.67767, -46.193977, -7.3223305), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (18.766514, -46.193977, -3.7328918), (18.766514, -46.193977, -3.7328918), (27.244755, -41.573483, -5.4193187), (27.778511, -41.573483, 0), (19.134172, -46.193977, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (27.244755, -41.573483, 5.4193187), (27.244755, -41.573483, 5.4193187), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (25.663998, -41.573483, 10.630376), (25.663998, -41.573483, 10.630376), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (23.096989, -41.573483, 15.432914), (23.096989, -41.573483, 15.432914), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -41.573483, 19.642374), (19.642374, -41.573483, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (15.432914, -41.573483, 23.096989), (15.432914, -41.573483, 23.096989), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (10.630376, -41.573483, 25.663998), (10.630376, -41.573483, 25.663998), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (5.4193187, -41.573483, 27.244755), (5.4193187, -41.573483, 27.244755), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (1.7009433e-15, -41.573483, 27.778511), (1.7009433e-15, -41.573483, 27.778511), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-5.4193187, -41.573483, 27.244755), (-5.4193187, -41.573483, 27.244755), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-10.630376, -41.573483, 25.663998), (-10.630376, -41.573483, 25.663998), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-15.432914, -41.573483, 23.096989), (-15.432914, -41.573483, 23.096989), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-19.642374, -41.573483, 19.642374), (-19.642374, -41.573483, 19.642374), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-23.096989, -41.573483, 15.432914), (-23.096989, -41.573483, 15.432914), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-25.663998, -41.573483, 10.630376), (-25.663998, -41.573483, 10.630376), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-27.244755, -41.573483, 5.4193187), (-27.244755, -41.573483, 5.4193187), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-27.778511, -41.573483, 3.4018865e-15), (-27.778511, -41.573483, 3.4018865e-15), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-27.244755, -41.573483, -5.4193187), (-27.244755, -41.573483, -5.4193187), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-25.663998, -41.573483, -10.630376), (-25.663998, -41.573483, -10.630376), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-23.096989, -41.573483, -15.432914), (-23.096989, -41.573483, -15.432914), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -41.573483, -19.642374), (-19.642374, -41.573483, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-15.432914, -41.573483, -23.096989), (-15.432914, -41.573483, -23.096989), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-10.630376, -41.573483, -25.663998), (-10.630376, -41.573483, -25.663998), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-5.4193187, -41.573483, -27.244755), (-5.4193187, -41.573483, -27.244755), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (-5.1028297e-15, -41.573483, -27.778511), (-5.1028297e-15, -41.573483, -27.778511), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (5.4193187, -41.573483, -27.244755), (5.4193187, -41.573483, -27.244755), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (10.630376, -41.573483, -25.663998), (10.630376, -41.573483, -25.663998), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (15.432914, -41.573483, -23.096989), (15.432914, -41.573483, -23.096989), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (19.642374, -41.573483, -19.642374), (19.642374, -41.573483, -19.642374), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (23.096989, -41.573483, -15.432914), (23.096989, -41.573483, -15.432914), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (25.663998, -41.573483, -10.630376), (25.663998, -41.573483, -10.630376), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (27.244755, -41.573483, -5.4193187), (27.244755, -41.573483, -5.4193187), (34.675995, -35.35534, -6.8974843), (35.35534, -35.35534, 0), (27.778511, -41.573483, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (34.675995, -35.35534, 6.8974843), (34.675995, -35.35534, 6.8974843), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (32.664074, -35.35534, 13.529902), (32.664074, -35.35534, 13.529902), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -35.35534, 19.642374), (29.39689, -35.35534, 19.642374), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (25, -35.35534, 25), (25, -35.35534, 25), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (19.642374, -35.35534, 29.39689), (19.642374, -35.35534, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (13.529902, -35.35534, 32.664074), (13.529902, -35.35534, 32.664074), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (6.8974843, -35.35534, 34.675995), (6.8974843, -35.35534, 34.675995), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (2.1648902e-15, -35.35534, 35.35534), (2.1648902e-15, -35.35534, 35.35534), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-6.8974843, -35.35534, 34.675995), (-6.8974843, -35.35534, 34.675995), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-13.529902, -35.35534, 32.664074), (-13.529902, -35.35534, 32.664074), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-19.642374, -35.35534, 29.39689), (-19.642374, -35.35534, 29.39689), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-25, -35.35534, 25), (-25, -35.35534, 25), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-29.39689, -35.35534, 19.642374), (-29.39689, -35.35534, 19.642374), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-32.664074, -35.35534, 13.529902), (-32.664074, -35.35534, 13.529902), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-34.675995, -35.35534, 6.8974843), (-34.675995, -35.35534, 6.8974843), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-35.35534, -35.35534, 4.3297804e-15), (-35.35534, -35.35534, 4.3297804e-15), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-34.675995, -35.35534, -6.8974843), (-34.675995, -35.35534, -6.8974843), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-32.664074, -35.35534, -13.529902), (-32.664074, -35.35534, -13.529902), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -35.35534, -19.642374), (-29.39689, -35.35534, -19.642374), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-25, -35.35534, -25), (-25, -35.35534, -25), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-19.642374, -35.35534, -29.39689), (-19.642374, -35.35534, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-13.529902, -35.35534, -32.664074), (-13.529902, -35.35534, -32.664074), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-6.8974843, -35.35534, -34.675995), (-6.8974843, -35.35534, -34.675995), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (-6.4946704e-15, -35.35534, -35.35534), (-6.4946704e-15, -35.35534, -35.35534), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (6.8974843, -35.35534, -34.675995), (6.8974843, -35.35534, -34.675995), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (13.529902, -35.35534, -32.664074), (13.529902, -35.35534, -32.664074), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (19.642374, -35.35534, -29.39689), (19.642374, -35.35534, -29.39689), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (25, -35.35534, -25), (25, -35.35534, -25), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (29.39689, -35.35534, -19.642374), (29.39689, -35.35534, -19.642374), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (32.664074, -35.35534, -13.529902), (32.664074, -35.35534, -13.529902), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (34.675995, -35.35534, -6.8974843), (34.675995, -35.35534, -6.8974843), (40.77466, -27.778511, -8.110583), (41.573483, -27.778511, 0), (35.35534, -35.35534, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (40.77466, -27.778511, 8.110583), (40.77466, -27.778511, 8.110583), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -27.778511, 15.909482), (38.408886, -27.778511, 15.909482), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (34.567085, -27.778511, 23.096989), (34.567085, -27.778511, 23.096989), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (29.39689, -27.778511, 29.39689), (29.39689, -27.778511, 29.39689), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (23.096989, -27.778511, 34.567085), (23.096989, -27.778511, 34.567085), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (15.909482, -27.778511, 38.408886), (15.909482, -27.778511, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (8.110583, -27.778511, 40.77466), (8.110583, -27.778511, 40.77466), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (2.5456415e-15, -27.778511, 41.573483), (2.5456415e-15, -27.778511, 41.573483), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-8.110583, -27.778511, 40.77466), (-8.110583, -27.778511, 40.77466), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-15.909482, -27.778511, 38.408886), (-15.909482, -27.778511, 38.408886), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-23.096989, -27.778511, 34.567085), (-23.096989, -27.778511, 34.567085), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-29.39689, -27.778511, 29.39689), (-29.39689, -27.778511, 29.39689), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-34.567085, -27.778511, 23.096989), (-34.567085, -27.778511, 23.096989), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-38.408886, -27.778511, 15.909482), (-38.408886, -27.778511, 15.909482), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-40.77466, -27.778511, 8.110583), (-40.77466, -27.778511, 8.110583), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-41.573483, -27.778511, 5.091283e-15), (-41.573483, -27.778511, 5.091283e-15), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-40.77466, -27.778511, -8.110583), (-40.77466, -27.778511, -8.110583), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -27.778511, -15.909482), (-38.408886, -27.778511, -15.909482), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-34.567085, -27.778511, -23.096989), (-34.567085, -27.778511, -23.096989), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-29.39689, -27.778511, -29.39689), (-29.39689, -27.778511, -29.39689), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-23.096989, -27.778511, -34.567085), (-23.096989, -27.778511, -34.567085), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-15.909482, -27.778511, -38.408886), (-15.909482, -27.778511, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.110583, -27.778511, -40.77466), (-8.110583, -27.778511, -40.77466), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (-7.6369244e-15, -27.778511, -41.573483), (-7.6369244e-15, -27.778511, -41.573483), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (8.110583, -27.778511, -40.77466), (8.110583, -27.778511, -40.77466), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (15.909482, -27.778511, -38.408886), (15.909482, -27.778511, -38.408886), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (23.096989, -27.778511, -34.567085), (23.096989, -27.778511, -34.567085), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (29.39689, -27.778511, -29.39689), (29.39689, -27.778511, -29.39689), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (34.567085, -27.778511, -23.096989), (34.567085, -27.778511, -23.096989), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (38.408886, -27.778511, -15.909482), (38.408886, -27.778511, -15.909482), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (40.77466, -27.778511, -8.110583), (40.77466, -27.778511, -8.110583), (45.306374, -19.134172, -9.011998), (46.193977, -19.134172, 0), (41.573483, -27.778511, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -19.134172, 9.011998), (45.306374, -19.134172, 9.011998), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (42.67767, -19.134172, 17.67767), (42.67767, -19.134172, 17.67767), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (38.408886, -19.134172, 25.663998), (38.408886, -19.134172, 25.663998), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (32.664074, -19.134172, 32.664074), (32.664074, -19.134172, 32.664074), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (25.663998, -19.134172, 38.408886), (25.663998, -19.134172, 38.408886), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (17.67767, -19.134172, 42.67767), (17.67767, -19.134172, 42.67767), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (9.011998, -19.134172, 45.306374), (9.011998, -19.134172, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (2.8285653e-15, -19.134172, 46.193977), (2.8285653e-15, -19.134172, 46.193977), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.011998, -19.134172, 45.306374), (-9.011998, -19.134172, 45.306374), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-17.67767, -19.134172, 42.67767), (-17.67767, -19.134172, 42.67767), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-25.663998, -19.134172, 38.408886), (-25.663998, -19.134172, 38.408886), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-32.664074, -19.134172, 32.664074), (-32.664074, -19.134172, 32.664074), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-38.408886, -19.134172, 25.663998), (-38.408886, -19.134172, 25.663998), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-42.67767, -19.134172, 17.67767), (-42.67767, -19.134172, 17.67767), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-45.306374, -19.134172, 9.011998), (-45.306374, -19.134172, 9.011998), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-46.193977, -19.134172, 5.6571306e-15), (-46.193977, -19.134172, 5.6571306e-15), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -19.134172, -9.011998), (-45.306374, -19.134172, -9.011998), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-42.67767, -19.134172, -17.67767), (-42.67767, -19.134172, -17.67767), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-38.408886, -19.134172, -25.663998), (-38.408886, -19.134172, -25.663998), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-32.664074, -19.134172, -32.664074), (-32.664074, -19.134172, -32.664074), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-25.663998, -19.134172, -38.408886), (-25.663998, -19.134172, -38.408886), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-17.67767, -19.134172, -42.67767), (-17.67767, -19.134172, -42.67767), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.011998, -19.134172, -45.306374), (-9.011998, -19.134172, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (-8.4856955e-15, -19.134172, -46.193977), (-8.4856955e-15, -19.134172, -46.193977), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (9.011998, -19.134172, -45.306374), (9.011998, -19.134172, -45.306374), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (17.67767, -19.134172, -42.67767), (17.67767, -19.134172, -42.67767), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (25.663998, -19.134172, -38.408886), (25.663998, -19.134172, -38.408886), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (32.664074, -19.134172, -32.664074), (32.664074, -19.134172, -32.664074), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (38.408886, -19.134172, -25.663998), (38.408886, -19.134172, -25.663998), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (42.67767, -19.134172, -17.67767), (42.67767, -19.134172, -17.67767), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (45.306374, -19.134172, -9.011998), (45.306374, -19.134172, -9.011998), (48.09699, -9.754516, -9.567086), (49.039265, -9.754516, 0), (46.193977, -19.134172, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 0, 9.754516), (48.09699, -9.754516, 9.567086), (48.09699, -9.754516, 9.567086), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (45.306374, -9.754516, 18.766514), (45.306374, -9.754516, 18.766514), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (40.77466, -9.754516, 27.244755), (40.77466, -9.754516, 27.244755), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (34.675995, -9.754516, 34.675995), (34.675995, -9.754516, 34.675995), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (27.244755, -9.754516, 40.77466), (27.244755, -9.754516, 40.77466), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (18.766514, -9.754516, 45.306374), (18.766514, -9.754516, 45.306374), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (9.567086, -9.754516, 48.09699), (9.567086, -9.754516, 48.09699), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (3.002789e-15, -9.754516, 49.039265), (3.002789e-15, -9.754516, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-9.567086, -9.754516, 48.09699), (-9.567086, -9.754516, 48.09699), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-18.766514, -9.754516, 45.306374), (-18.766514, -9.754516, 45.306374), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-27.244755, -9.754516, 40.77466), (-27.244755, -9.754516, 40.77466), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-34.675995, -9.754516, 34.675995), (-34.675995, -9.754516, 34.675995), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-40.77466, -9.754516, 27.244755), (-40.77466, -9.754516, 27.244755), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-45.306374, -9.754516, 18.766514), (-45.306374, -9.754516, 18.766514), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-48.09699, -9.754516, 9.567086), (-48.09699, -9.754516, 9.567086), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, -9.754516, 6.005578e-15), (-49.039265, -9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-48.09699, -9.754516, -9.567086), (-48.09699, -9.754516, -9.567086), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-45.306374, -9.754516, -18.766514), (-45.306374, -9.754516, -18.766514), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-40.77466, -9.754516, -27.244755), (-40.77466, -9.754516, -27.244755), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-34.675995, -9.754516, -34.675995), (-34.675995, -9.754516, -34.675995), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-27.244755, -9.754516, -40.77466), (-27.244755, -9.754516, -40.77466), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-18.766514, -9.754516, -45.306374), (-18.766514, -9.754516, -45.306374), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.567086, -9.754516, -48.09699), (-9.567086, -9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (-9.0083665e-15, -9.754516, -49.039265), (-9.0083665e-15, -9.754516, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (9.567086, -9.754516, -48.09699), (9.567086, -9.754516, -48.09699), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (18.766514, -9.754516, -45.306374), (18.766514, -9.754516, -45.306374), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (27.244755, -9.754516, -40.77466), (27.244755, -9.754516, -40.77466), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (34.675995, -9.754516, -34.675995), (34.675995, -9.754516, -34.675995), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (40.77466, -9.754516, -27.244755), (40.77466, -9.754516, -27.244755), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (45.306374, -9.754516, -18.766514), (45.306374, -9.754516, -18.766514), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (48.09699, -9.754516, -9.567086), (48.09699, -9.754516, -9.567086), (49.039265, 0, -9.754516), (50, 0, 0), (49.039265, -9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (49.039265, 0, 9.754516), (49.039265, 0, 9.754516), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (46.193977, 0, 19.134172), (46.193977, 0, 19.134172), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (41.573483, 0, 27.778511), (41.573483, 0, 27.778511), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (35.35534, 0, 35.35534), (35.35534, 0, 35.35534), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (27.778511, 0, 41.573483), (27.778511, 0, 41.573483), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (19.134172, 0, 46.193977), (19.134172, 0, 46.193977), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (9.754516, 0, 49.039265), (9.754516, 0, 49.039265), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (3.0616169e-15, 0, 50), (3.0616169e-15, 0, 50), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-9.754516, 0, 49.039265), (-9.754516, 0, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-19.134172, 0, 46.193977), (-19.134172, 0, 46.193977), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-27.778511, 0, 41.573483), (-27.778511, 0, 41.573483), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-35.35534, 0, 35.35534), (-35.35534, 0, 35.35534), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-41.573483, 0, 27.778511), (-41.573483, 0, 27.778511), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-46.193977, 0, 19.134172), (-46.193977, 0, 19.134172), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 0, 9.754516), (-49.039265, 0, 9.754516), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-50, 0, 6.1232338e-15), (-50, 0, 6.1232338e-15), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-49.039265, 0, -9.754516), (-49.039265, 0, -9.754516), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-46.193977, 0, -19.134172), (-46.193977, 0, -19.134172), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-41.573483, 0, -27.778511), (-41.573483, 0, -27.778511), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-35.35534, 0, -35.35534), (-35.35534, 0, -35.35534), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-27.778511, 0, -41.573483), (-27.778511, 0, -41.573483), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-19.134172, 0, -46.193977), (-19.134172, 0, -46.193977), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.754516, 0, -49.039265), (-9.754516, 0, -49.039265), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (-9.184851e-15, 0, -50), (-9.184851e-15, 0, -50), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (9.754516, 0, -49.039265), (9.754516, 0, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (19.134172, 0, -46.193977), (19.134172, 0, -46.193977), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (27.778511, 0, -41.573483), (27.778511, 0, -41.573483), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (35.35534, 0, -35.35534), (35.35534, 0, -35.35534), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (41.573483, 0, -27.778511), (41.573483, 0, -27.778511), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (46.193977, 0, -19.134172), (46.193977, 0, -19.134172), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (49.039265, 0, -9.754516), (49.039265, 0, -9.754516), (48.09699, 9.754516, -9.567086), (49.039265, 9.754516, 0), (50, 0, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (48.09699, 9.754516, 9.567086), (48.09699, 9.754516, 9.567086), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (45.306374, 9.754516, 18.766514), (45.306374, 9.754516, 18.766514), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (40.77466, 9.754516, 27.244755), (40.77466, 9.754516, 27.244755), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (34.675995, 9.754516, 34.675995), (34.675995, 9.754516, 34.675995), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (27.244755, 9.754516, 40.77466), (27.244755, 9.754516, 40.77466), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (18.766514, 9.754516, 45.306374), (18.766514, 9.754516, 45.306374), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (9.567086, 9.754516, 48.09699), (9.567086, 9.754516, 48.09699), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (3.002789e-15, 9.754516, 49.039265), (3.002789e-15, 9.754516, 49.039265), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-9.567086, 9.754516, 48.09699), (-9.567086, 9.754516, 48.09699), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-18.766514, 9.754516, 45.306374), (-18.766514, 9.754516, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-27.244755, 9.754516, 40.77466), (-27.244755, 9.754516, 40.77466), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-34.675995, 9.754516, 34.675995), (-34.675995, 9.754516, 34.675995), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-40.77466, 9.754516, 27.244755), (-40.77466, 9.754516, 27.244755), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 9.754516, 18.766514), (-45.306374, 9.754516, 18.766514), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-48.09699, 9.754516, 9.567086), (-48.09699, 9.754516, 9.567086), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-49.039265, 9.754516, 6.005578e-15), (-49.039265, 9.754516, 6.005578e-15), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-48.09699, 9.754516, -9.567086), (-48.09699, 9.754516, -9.567086), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-45.306374, 9.754516, -18.766514), (-45.306374, 9.754516, -18.766514), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-40.77466, 9.754516, -27.244755), (-40.77466, 9.754516, -27.244755), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-34.675995, 9.754516, -34.675995), (-34.675995, 9.754516, -34.675995), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-27.244755, 9.754516, -40.77466), (-27.244755, 9.754516, -40.77466), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-18.766514, 9.754516, -45.306374), (-18.766514, 9.754516, -45.306374), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.567086, 9.754516, -48.09699), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (-9.0083665e-15, 9.754516, -49.039265), (-9.0083665e-15, 9.754516, -49.039265), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (9.567086, 9.754516, -48.09699), (9.567086, 9.754516, -48.09699), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (18.766514, 9.754516, -45.306374), (18.766514, 9.754516, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (27.244755, 9.754516, -40.77466), (27.244755, 9.754516, -40.77466), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (34.675995, 9.754516, -34.675995), (34.675995, 9.754516, -34.675995), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (40.77466, 9.754516, -27.244755), (40.77466, 9.754516, -27.244755), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 9.754516, -18.766514), (45.306374, 9.754516, -18.766514), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (48.09699, 9.754516, -9.567086), (48.09699, 9.754516, -9.567086), (45.306374, 19.134172, -9.011998), (46.193977, 19.134172, 0), (49.039265, 9.754516, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (45.306374, 19.134172, 9.011998), (45.306374, 19.134172, 9.011998), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (42.67767, 19.134172, 17.67767), (42.67767, 19.134172, 17.67767), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (38.408886, 19.134172, 25.663998), (38.408886, 19.134172, 25.663998), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (32.664074, 19.134172, 32.664074), (32.664074, 19.134172, 32.664074), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (25.663998, 19.134172, 38.408886), (25.663998, 19.134172, 38.408886), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (17.67767, 19.134172, 42.67767), (17.67767, 19.134172, 42.67767), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (9.011998, 19.134172, 45.306374), (9.011998, 19.134172, 45.306374), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (2.8285653e-15, 19.134172, 46.193977), (2.8285653e-15, 19.134172, 46.193977), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-9.011998, 19.134172, 45.306374), (-9.011998, 19.134172, 45.306374), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-17.67767, 19.134172, 42.67767), (-17.67767, 19.134172, 42.67767), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-25.663998, 19.134172, 38.408886), (-25.663998, 19.134172, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-32.664074, 19.134172, 32.664074), (-32.664074, 19.134172, 32.664074), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 19.134172, 25.663998), (-38.408886, 19.134172, 25.663998), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-42.67767, 19.134172, 17.67767), (-42.67767, 19.134172, 17.67767), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-45.306374, 19.134172, 9.011998), (-45.306374, 19.134172, 9.011998), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-46.193977, 19.134172, 5.6571306e-15), (-46.193977, 19.134172, 5.6571306e-15), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-45.306374, 19.134172, -9.011998), (-45.306374, 19.134172, -9.011998), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-42.67767, 19.134172, -17.67767), (-42.67767, 19.134172, -17.67767), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-38.408886, 19.134172, -25.663998), (-38.408886, 19.134172, -25.663998), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-32.664074, 19.134172, -32.664074), (-32.664074, 19.134172, -32.664074), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-25.663998, 19.134172, -38.408886), (-25.663998, 19.134172, -38.408886), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-17.67767, 19.134172, -42.67767), (-17.67767, 19.134172, -42.67767), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-9.011998, 19.134172, -45.306374), (-9.011998, 19.134172, -45.306374), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (-8.4856955e-15, 19.134172, -46.193977), (-8.4856955e-15, 19.134172, -46.193977), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (9.011998, 19.134172, -45.306374), (9.011998, 19.134172, -45.306374), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (17.67767, 19.134172, -42.67767), (17.67767, 19.134172, -42.67767), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (25.663998, 19.134172, -38.408886), (25.663998, 19.134172, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (32.664074, 19.134172, -32.664074), (32.664074, 19.134172, -32.664074), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 19.134172, -25.663998), (38.408886, 19.134172, -25.663998), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (42.67767, 19.134172, -17.67767), (42.67767, 19.134172, -17.67767), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (45.306374, 19.134172, -9.011998), (45.306374, 19.134172, -9.011998), (40.77466, 27.778511, -8.110583), (41.573483, 27.778511, 0), (46.193977, 19.134172, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (40.77466, 27.778511, 8.110583), (40.77466, 27.778511, 8.110583), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (38.408886, 27.778511, 15.909482), (38.408886, 27.778511, 15.909482), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (34.567085, 27.778511, 23.096989), (34.567085, 27.778511, 23.096989), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (29.39689, 27.778511, 29.39689), (29.39689, 27.778511, 29.39689), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (23.096989, 27.778511, 34.567085), (23.096989, 27.778511, 34.567085), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (15.909482, 27.778511, 38.408886), (15.909482, 27.778511, 38.408886), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (8.110583, 27.778511, 40.77466), (8.110583, 27.778511, 40.77466), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (2.5456415e-15, 27.778511, 41.573483), (2.5456415e-15, 27.778511, 41.573483), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-8.110583, 27.778511, 40.77466), (-8.110583, 27.778511, 40.77466), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-15.909482, 27.778511, 38.408886), (-15.909482, 27.778511, 38.408886), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-23.096989, 27.778511, 34.567085), (-23.096989, 27.778511, 34.567085), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 27.778511, 29.39689), (-29.39689, 27.778511, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-34.567085, 27.778511, 23.096989), (-34.567085, 27.778511, 23.096989), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-38.408886, 27.778511, 15.909482), (-38.408886, 27.778511, 15.909482), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-40.77466, 27.778511, 8.110583), (-40.77466, 27.778511, 8.110583), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-41.573483, 27.778511, 5.091283e-15), (-41.573483, 27.778511, 5.091283e-15), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-40.77466, 27.778511, -8.110583), (-40.77466, 27.778511, -8.110583), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-38.408886, 27.778511, -15.909482), (-38.408886, 27.778511, -15.909482), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-34.567085, 27.778511, -23.096989), (-34.567085, 27.778511, -23.096989), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-29.39689, 27.778511, -29.39689), (-29.39689, 27.778511, -29.39689), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-23.096989, 27.778511, -34.567085), (-23.096989, 27.778511, -34.567085), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-15.909482, 27.778511, -38.408886), (-15.909482, 27.778511, -38.408886), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-8.110583, 27.778511, -40.77466), (-8.110583, 27.778511, -40.77466), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (-7.6369244e-15, 27.778511, -41.573483), (-7.6369244e-15, 27.778511, -41.573483), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (8.110583, 27.778511, -40.77466), (8.110583, 27.778511, -40.77466), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (15.909482, 27.778511, -38.408886), (15.909482, 27.778511, -38.408886), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (23.096989, 27.778511, -34.567085), (23.096989, 27.778511, -34.567085), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 27.778511, -29.39689), (29.39689, 27.778511, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (34.567085, 27.778511, -23.096989), (34.567085, 27.778511, -23.096989), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (38.408886, 27.778511, -15.909482), (38.408886, 27.778511, -15.909482), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (40.77466, 27.778511, -8.110583), (40.77466, 27.778511, -8.110583), (34.675995, 35.35534, -6.8974843), (35.35534, 35.35534, 0), (41.573483, 27.778511, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (34.675995, 35.35534, 6.8974843), (34.675995, 35.35534, 6.8974843), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (32.664074, 35.35534, 13.529902), (32.664074, 35.35534, 13.529902), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (29.39689, 35.35534, 19.642374), (29.39689, 35.35534, 19.642374), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (25, 35.35534, 25), (25, 35.35534, 25), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (19.642374, 35.35534, 29.39689), (19.642374, 35.35534, 29.39689), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (13.529902, 35.35534, 32.664074), (13.529902, 35.35534, 32.664074), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (6.8974843, 35.35534, 34.675995), (6.8974843, 35.35534, 34.675995), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (2.1648902e-15, 35.35534, 35.35534), (2.1648902e-15, 35.35534, 35.35534), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-6.8974843, 35.35534, 34.675995), (-6.8974843, 35.35534, 34.675995), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-13.529902, 35.35534, 32.664074), (-13.529902, 35.35534, 32.664074), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 35.35534, 29.39689), (-19.642374, 35.35534, 29.39689), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-25, 35.35534, 25), (-25, 35.35534, 25), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-29.39689, 35.35534, 19.642374), (-29.39689, 35.35534, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-32.664074, 35.35534, 13.529902), (-32.664074, 35.35534, 13.529902), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-34.675995, 35.35534, 6.8974843), (-34.675995, 35.35534, 6.8974843), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-35.35534, 35.35534, 4.3297804e-15), (-35.35534, 35.35534, 4.3297804e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-34.675995, 35.35534, -6.8974843), (-34.675995, 35.35534, -6.8974843), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-32.664074, 35.35534, -13.529902), (-32.664074, 35.35534, -13.529902), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-29.39689, 35.35534, -19.642374), (-29.39689, 35.35534, -19.642374), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-25, 35.35534, -25), (-25, 35.35534, -25), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-19.642374, 35.35534, -29.39689), (-19.642374, 35.35534, -29.39689), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-13.529902, 35.35534, -32.664074), (-13.529902, 35.35534, -32.664074), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-6.8974843, 35.35534, -34.675995), (-6.8974843, 35.35534, -34.675995), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (-6.4946704e-15, 35.35534, -35.35534), (-6.4946704e-15, 35.35534, -35.35534), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (6.8974843, 35.35534, -34.675995), (6.8974843, 35.35534, -34.675995), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (13.529902, 35.35534, -32.664074), (13.529902, 35.35534, -32.664074), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 35.35534, -29.39689), (19.642374, 35.35534, -29.39689), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (25, 35.35534, -25), (25, 35.35534, -25), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (29.39689, 35.35534, -19.642374), (29.39689, 35.35534, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (32.664074, 35.35534, -13.529902), (32.664074, 35.35534, -13.529902), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (34.675995, 35.35534, -6.8974843), (34.675995, 35.35534, -6.8974843), (27.244755, 41.573483, -5.4193187), (27.778511, 41.573483, 0), (35.35534, 35.35534, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (27.244755, 41.573483, 5.4193187), (27.244755, 41.573483, 5.4193187), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (25.663998, 41.573483, 10.630376), (25.663998, 41.573483, 10.630376), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (23.096989, 41.573483, 15.432914), (23.096989, 41.573483, 15.432914), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (19.642374, 41.573483, 19.642374), (19.642374, 41.573483, 19.642374), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (15.432914, 41.573483, 23.096989), (15.432914, 41.573483, 23.096989), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (10.630376, 41.573483, 25.663998), (10.630376, 41.573483, 25.663998), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (5.4193187, 41.573483, 27.244755), (5.4193187, 41.573483, 27.244755), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (1.7009433e-15, 41.573483, 27.778511), (1.7009433e-15, 41.573483, 27.778511), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-5.4193187, 41.573483, 27.244755), (-5.4193187, 41.573483, 27.244755), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 41.573483, 25.663998), (-10.630376, 41.573483, 25.663998), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-15.432914, 41.573483, 23.096989), (-15.432914, 41.573483, 23.096989), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-19.642374, 41.573483, 19.642374), (-19.642374, 41.573483, 19.642374), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-23.096989, 41.573483, 15.432914), (-23.096989, 41.573483, 15.432914), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-25.663998, 41.573483, 10.630376), (-25.663998, 41.573483, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-27.244755, 41.573483, 5.4193187), (-27.244755, 41.573483, 5.4193187), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-27.778511, 41.573483, 3.4018865e-15), (-27.778511, 41.573483, 3.4018865e-15), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-27.244755, 41.573483, -5.4193187), (-27.244755, 41.573483, -5.4193187), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-25.663998, 41.573483, -10.630376), (-25.663998, 41.573483, -10.630376), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-23.096989, 41.573483, -15.432914), (-23.096989, 41.573483, -15.432914), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-19.642374, 41.573483, -19.642374), (-19.642374, 41.573483, -19.642374), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-15.432914, 41.573483, -23.096989), (-15.432914, 41.573483, -23.096989), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-10.630376, 41.573483, -25.663998), (-10.630376, 41.573483, -25.663998), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-5.4193187, 41.573483, -27.244755), (-5.4193187, 41.573483, -27.244755), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (-5.1028297e-15, 41.573483, -27.778511), (-5.1028297e-15, 41.573483, -27.778511), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (5.4193187, 41.573483, -27.244755), (5.4193187, 41.573483, -27.244755), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 41.573483, -25.663998), (10.630376, 41.573483, -25.663998), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (15.432914, 41.573483, -23.096989), (15.432914, 41.573483, -23.096989), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (19.642374, 41.573483, -19.642374), (19.642374, 41.573483, -19.642374), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (23.096989, 41.573483, -15.432914), (23.096989, 41.573483, -15.432914), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (25.663998, 41.573483, -10.630376), (25.663998, 41.573483, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (27.244755, 41.573483, -5.4193187), (27.244755, 41.573483, -5.4193187), (18.766514, 46.193977, -3.7328918), (19.134172, 46.193977, 0), (27.778511, 41.573483, 0), (19.134172, 46.193977, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (18.766514, 46.193977, 3.7328918), (18.766514, 46.193977, 3.7328918), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (17.67767, 46.193977, 7.3223305), (17.67767, 46.193977, 7.3223305), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (15.909482, 46.193977, 10.630376), (15.909482, 46.193977, 10.630376), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (13.529902, 46.193977, 13.529902), (13.529902, 46.193977, 13.529902), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (10.630376, 46.193977, 15.909482), (10.630376, 46.193977, 15.909482), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (7.3223305, 46.193977, 17.67767), (7.3223305, 46.193977, 17.67767), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (3.7328918, 46.193977, 18.766514), (3.7328918, 46.193977, 18.766514), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (1.1716301e-15, 46.193977, 19.134172), (1.1716301e-15, 46.193977, 19.134172), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 46.193977, 18.766514), (-3.7328918, 46.193977, 18.766514), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-7.3223305, 46.193977, 17.67767), (-7.3223305, 46.193977, 17.67767), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-10.630376, 46.193977, 15.909482), (-10.630376, 46.193977, 15.909482), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-13.529902, 46.193977, 13.529902), (-13.529902, 46.193977, 13.529902), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-15.909482, 46.193977, 10.630376), (-15.909482, 46.193977, 10.630376), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-17.67767, 46.193977, 7.3223305), (-17.67767, 46.193977, 7.3223305), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-18.766514, 46.193977, 3.7328918), (-18.766514, 46.193977, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-19.134172, 46.193977, 2.3432601e-15), (-19.134172, 46.193977, 2.3432601e-15), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-18.766514, 46.193977, -3.7328918), (-18.766514, 46.193977, -3.7328918), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-17.67767, 46.193977, -7.3223305), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-15.909482, 46.193977, -10.630376), (-15.909482, 46.193977, -10.630376), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-13.529902, 46.193977, -13.529902), (-13.529902, 46.193977, -13.529902), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-10.630376, 46.193977, -15.909482), (-10.630376, 46.193977, -15.909482), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-7.3223305, 46.193977, -17.67767), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 46.193977, -18.766514), (-3.7328918, 46.193977, -18.766514), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (-3.5148903e-15, 46.193977, -19.134172), (-3.5148903e-15, 46.193977, -19.134172), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 46.193977, -18.766514), (3.7328918, 46.193977, -18.766514), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (7.3223305, 46.193977, -17.67767), (7.3223305, 46.193977, -17.67767), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (10.630376, 46.193977, -15.909482), (10.630376, 46.193977, -15.909482), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (13.529902, 46.193977, -13.529902), (13.529902, 46.193977, -13.529902), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (15.909482, 46.193977, -10.630376), (15.909482, 46.193977, -10.630376), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (17.67767, 46.193977, -7.3223305), (17.67767, 46.193977, -7.3223305), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (18.766514, 46.193977, -3.7328918), (18.766514, 46.193977, -3.7328918), (9.567086, 49.039265, -1.9030117), (9.754516, 49.039265, 0), (19.134172, 46.193977, 0), (0, 50, 0), (9.567086, 49.039265, 1.9030117), (9.754516, 49.039265, 0), (0, 50, 0), (9.011998, 49.039265, 3.7328918), (9.567086, 49.039265, 1.9030117), (0, 50, 0), (8.110583, 49.039265, 5.4193187), (9.011998, 49.039265, 3.7328918), (0, 50, 0), (6.8974843, 49.039265, 6.8974843), (8.110583, 49.039265, 5.4193187), (0, 50, 0), (5.4193187, 49.039265, 8.110583), (6.8974843, 49.039265, 6.8974843), (0, 50, 0), (3.7328918, 49.039265, 9.011998), (5.4193187, 49.039265, 8.110583), (0, 50, 0), (1.9030117, 49.039265, 9.567086), (3.7328918, 49.039265, 9.011998), (0, 50, 0), (5.9729185e-16, 49.039265, 9.754516), (1.9030117, 49.039265, 9.567086), (0, 50, 0), (-1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (0, 50, 0), (-3.7328918, 49.039265, 9.011998), (-1.9030117, 49.039265, 9.567086), (0, 50, 0), (-5.4193187, 49.039265, 8.110583), (-3.7328918, 49.039265, 9.011998), (0, 50, 0), (-6.8974843, 49.039265, 6.8974843), (-5.4193187, 49.039265, 8.110583), (0, 50, 0), (-8.110583, 49.039265, 5.4193187), (-6.8974843, 49.039265, 6.8974843), (0, 50, 0), (-9.011998, 49.039265, 3.7328918), (-8.110583, 49.039265, 5.4193187), (0, 50, 0), (-9.567086, 49.039265, 1.9030117), (-9.011998, 49.039265, 3.7328918), (0, 50, 0), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, 1.9030117), (0, 50, 0), (-9.567086, 49.039265, -1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (0, 50, 0), (-9.011998, 49.039265, -3.7328918), (-9.567086, 49.039265, -1.9030117), (0, 50, 0), (-8.110583, 49.039265, -5.4193187), (-9.011998, 49.039265, -3.7328918), (0, 50, 0), (-6.8974843, 49.039265, -6.8974843), (-8.110583, 49.039265, -5.4193187), (0, 50, 0), (-5.4193187, 49.039265, -8.110583), (-6.8974843, 49.039265, -6.8974843), (0, 50, 0), (-3.7328918, 49.039265, -9.011998), (-5.4193187, 49.039265, -8.110583), (0, 50, 0), (-1.9030117, 49.039265, -9.567086), (-3.7328918, 49.039265, -9.011998), (0, 50, 0), (-1.7918755e-15, 49.039265, -9.754516), (-1.9030117, 49.039265, -9.567086), (0, 50, 0), (1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (0, 50, 0), (3.7328918, 49.039265, -9.011998), (1.9030117, 49.039265, -9.567086), (0, 50, 0), (5.4193187, 49.039265, -8.110583), (3.7328918, 49.039265, -9.011998), (0, 50, 0), (6.8974843, 49.039265, -6.8974843), (5.4193187, 49.039265, -8.110583), (0, 50, 0), (8.110583, 49.039265, -5.4193187), (6.8974843, 49.039265, -6.8974843), (0, 50, 0), (9.011998, 49.039265, -3.7328918), (8.110583, 49.039265, -5.4193187), (0, 50, 0), (9.567086, 49.039265, -1.9030117), (9.011998, 49.039265, -3.7328918), (0, 50, 0), (9.754516, 49.039265, 0), (9.567086, 49.039265, -1.9030117)] ( interpolation = "faceVarying" ) point3f[] points = [(0, -50, 0), (9.754516, -49.039265, 0), (9.567086, -49.039265, 1.9030117), (9.011998, -49.039265, 3.7328918), (8.110583, -49.039265, 5.4193187), (6.8974843, -49.039265, 6.8974843), (5.4193187, -49.039265, 8.110583), (3.7328918, -49.039265, 9.011998), (1.9030117, -49.039265, 9.567086), (5.9729185e-16, -49.039265, 9.754516), (-1.9030117, -49.039265, 9.567086), (-3.7328918, -49.039265, 9.011998), (-5.4193187, -49.039265, 8.110583), (-6.8974843, -49.039265, 6.8974843), (-8.110583, -49.039265, 5.4193187), (-9.011998, -49.039265, 3.7328918), (-9.567086, -49.039265, 1.9030117), (-9.754516, -49.039265, 1.1945837e-15), (-9.567086, -49.039265, -1.9030117), (-9.011998, -49.039265, -3.7328918), (-8.110583, -49.039265, -5.4193187), (-6.8974843, -49.039265, -6.8974843), (-5.4193187, -49.039265, -8.110583), (-3.7328918, -49.039265, -9.011998), (-1.9030117, -49.039265, -9.567086), (-1.7918755e-15, -49.039265, -9.754516), (1.9030117, -49.039265, -9.567086), (3.7328918, -49.039265, -9.011998), (5.4193187, -49.039265, -8.110583), (6.8974843, -49.039265, -6.8974843), (8.110583, -49.039265, -5.4193187), (9.011998, -49.039265, -3.7328918), (9.567086, -49.039265, -1.9030117), (19.134172, -46.193977, 0), (18.766514, -46.193977, 3.7328918), (17.67767, -46.193977, 7.3223305), (15.909482, -46.193977, 10.630376), (13.529902, -46.193977, 13.529902), (10.630376, -46.193977, 15.909482), (7.3223305, -46.193977, 17.67767), (3.7328918, -46.193977, 18.766514), (1.1716301e-15, -46.193977, 19.134172), (-3.7328918, -46.193977, 18.766514), (-7.3223305, -46.193977, 17.67767), (-10.630376, -46.193977, 15.909482), (-13.529902, -46.193977, 13.529902), (-15.909482, -46.193977, 10.630376), (-17.67767, -46.193977, 7.3223305), (-18.766514, -46.193977, 3.7328918), (-19.134172, -46.193977, 2.3432601e-15), (-18.766514, -46.193977, -3.7328918), (-17.67767, -46.193977, -7.3223305), (-15.909482, -46.193977, -10.630376), (-13.529902, -46.193977, -13.529902), (-10.630376, -46.193977, -15.909482), (-7.3223305, -46.193977, -17.67767), (-3.7328918, -46.193977, -18.766514), (-3.5148903e-15, -46.193977, -19.134172), (3.7328918, -46.193977, -18.766514), (7.3223305, -46.193977, -17.67767), (10.630376, -46.193977, -15.909482), (13.529902, -46.193977, -13.529902), (15.909482, -46.193977, -10.630376), (17.67767, -46.193977, -7.3223305), (18.766514, -46.193977, -3.7328918), (27.778511, -41.573483, 0), (27.244755, -41.573483, 5.4193187), (25.663998, -41.573483, 10.630376), (23.096989, -41.573483, 15.432914), (19.642374, -41.573483, 19.642374), (15.432914, -41.573483, 23.096989), (10.630376, -41.573483, 25.663998), (5.4193187, -41.573483, 27.244755), (1.7009433e-15, -41.573483, 27.778511), (-5.4193187, -41.573483, 27.244755), (-10.630376, -41.573483, 25.663998), (-15.432914, -41.573483, 23.096989), (-19.642374, -41.573483, 19.642374), (-23.096989, -41.573483, 15.432914), (-25.663998, -41.573483, 10.630376), (-27.244755, -41.573483, 5.4193187), (-27.778511, -41.573483, 3.4018865e-15), (-27.244755, -41.573483, -5.4193187), (-25.663998, -41.573483, -10.630376), (-23.096989, -41.573483, -15.432914), (-19.642374, -41.573483, -19.642374), (-15.432914, -41.573483, -23.096989), (-10.630376, -41.573483, -25.663998), (-5.4193187, -41.573483, -27.244755), (-5.1028297e-15, -41.573483, -27.778511), (5.4193187, -41.573483, -27.244755), (10.630376, -41.573483, -25.663998), (15.432914, -41.573483, -23.096989), (19.642374, -41.573483, -19.642374), (23.096989, -41.573483, -15.432914), (25.663998, -41.573483, -10.630376), (27.244755, -41.573483, -5.4193187), (35.35534, -35.35534, 0), (34.675995, -35.35534, 6.8974843), (32.664074, -35.35534, 13.529902), (29.39689, -35.35534, 19.642374), (25, -35.35534, 25), (19.642374, -35.35534, 29.39689), (13.529902, -35.35534, 32.664074), (6.8974843, -35.35534, 34.675995), (2.1648902e-15, -35.35534, 35.35534), (-6.8974843, -35.35534, 34.675995), (-13.529902, -35.35534, 32.664074), (-19.642374, -35.35534, 29.39689), (-25, -35.35534, 25), (-29.39689, -35.35534, 19.642374), (-32.664074, -35.35534, 13.529902), (-34.675995, -35.35534, 6.8974843), (-35.35534, -35.35534, 4.3297804e-15), (-34.675995, -35.35534, -6.8974843), (-32.664074, -35.35534, -13.529902), (-29.39689, -35.35534, -19.642374), (-25, -35.35534, -25), (-19.642374, -35.35534, -29.39689), (-13.529902, -35.35534, -32.664074), (-6.8974843, -35.35534, -34.675995), (-6.4946704e-15, -35.35534, -35.35534), (6.8974843, -35.35534, -34.675995), (13.529902, -35.35534, -32.664074), (19.642374, -35.35534, -29.39689), (25, -35.35534, -25), (29.39689, -35.35534, -19.642374), (32.664074, -35.35534, -13.529902), (34.675995, -35.35534, -6.8974843), (41.573483, -27.778511, 0), (40.77466, -27.778511, 8.110583), (38.408886, -27.778511, 15.909482), (34.567085, -27.778511, 23.096989), (29.39689, -27.778511, 29.39689), (23.096989, -27.778511, 34.567085), (15.909482, -27.778511, 38.408886), (8.110583, -27.778511, 40.77466), (2.5456415e-15, -27.778511, 41.573483), (-8.110583, -27.778511, 40.77466), (-15.909482, -27.778511, 38.408886), (-23.096989, -27.778511, 34.567085), (-29.39689, -27.778511, 29.39689), (-34.567085, -27.778511, 23.096989), (-38.408886, -27.778511, 15.909482), (-40.77466, -27.778511, 8.110583), (-41.573483, -27.778511, 5.091283e-15), (-40.77466, -27.778511, -8.110583), (-38.408886, -27.778511, -15.909482), (-34.567085, -27.778511, -23.096989), (-29.39689, -27.778511, -29.39689), (-23.096989, -27.778511, -34.567085), (-15.909482, -27.778511, -38.408886), (-8.110583, -27.778511, -40.77466), (-7.6369244e-15, -27.778511, -41.573483), (8.110583, -27.778511, -40.77466), (15.909482, -27.778511, -38.408886), (23.096989, -27.778511, -34.567085), (29.39689, -27.778511, -29.39689), (34.567085, -27.778511, -23.096989), (38.408886, -27.778511, -15.909482), (40.77466, -27.778511, -8.110583), (46.193977, -19.134172, 0), (45.306374, -19.134172, 9.011998), (42.67767, -19.134172, 17.67767), (38.408886, -19.134172, 25.663998), (32.664074, -19.134172, 32.664074), (25.663998, -19.134172, 38.408886), (17.67767, -19.134172, 42.67767), (9.011998, -19.134172, 45.306374), (2.8285653e-15, -19.134172, 46.193977), (-9.011998, -19.134172, 45.306374), (-17.67767, -19.134172, 42.67767), (-25.663998, -19.134172, 38.408886), (-32.664074, -19.134172, 32.664074), (-38.408886, -19.134172, 25.663998), (-42.67767, -19.134172, 17.67767), (-45.306374, -19.134172, 9.011998), (-46.193977, -19.134172, 5.6571306e-15), (-45.306374, -19.134172, -9.011998), (-42.67767, -19.134172, -17.67767), (-38.408886, -19.134172, -25.663998), (-32.664074, -19.134172, -32.664074), (-25.663998, -19.134172, -38.408886), (-17.67767, -19.134172, -42.67767), (-9.011998, -19.134172, -45.306374), (-8.4856955e-15, -19.134172, -46.193977), (9.011998, -19.134172, -45.306374), (17.67767, -19.134172, -42.67767), (25.663998, -19.134172, -38.408886), (32.664074, -19.134172, -32.664074), (38.408886, -19.134172, -25.663998), (42.67767, -19.134172, -17.67767), (45.306374, -19.134172, -9.011998), (49.039265, -9.754516, 0), (48.09699, -9.754516, 9.567086), (45.306374, -9.754516, 18.766514), (40.77466, -9.754516, 27.244755), (34.675995, -9.754516, 34.675995), (27.244755, -9.754516, 40.77466), (18.766514, -9.754516, 45.306374), (9.567086, -9.754516, 48.09699), (3.002789e-15, -9.754516, 49.039265), (-9.567086, -9.754516, 48.09699), (-18.766514, -9.754516, 45.306374), (-27.244755, -9.754516, 40.77466), (-34.675995, -9.754516, 34.675995), (-40.77466, -9.754516, 27.244755), (-45.306374, -9.754516, 18.766514), (-48.09699, -9.754516, 9.567086), (-49.039265, -9.754516, 6.005578e-15), (-48.09699, -9.754516, -9.567086), (-45.306374, -9.754516, -18.766514), (-40.77466, -9.754516, -27.244755), (-34.675995, -9.754516, -34.675995), (-27.244755, -9.754516, -40.77466), (-18.766514, -9.754516, -45.306374), (-9.567086, -9.754516, -48.09699), (-9.0083665e-15, -9.754516, -49.039265), (9.567086, -9.754516, -48.09699), (18.766514, -9.754516, -45.306374), (27.244755, -9.754516, -40.77466), (34.675995, -9.754516, -34.675995), (40.77466, -9.754516, -27.244755), (45.306374, -9.754516, -18.766514), (48.09699, -9.754516, -9.567086), (50, 0, 0), (49.039265, 0, 9.754516), (46.193977, 0, 19.134172), (41.573483, 0, 27.778511), (35.35534, 0, 35.35534), (27.778511, 0, 41.573483), (19.134172, 0, 46.193977), (9.754516, 0, 49.039265), (3.0616169e-15, 0, 50), (-9.754516, 0, 49.039265), (-19.134172, 0, 46.193977), (-27.778511, 0, 41.573483), (-35.35534, 0, 35.35534), (-41.573483, 0, 27.778511), (-46.193977, 0, 19.134172), (-49.039265, 0, 9.754516), (-50, 0, 6.1232338e-15), (-49.039265, 0, -9.754516), (-46.193977, 0, -19.134172), (-41.573483, 0, -27.778511), (-35.35534, 0, -35.35534), (-27.778511, 0, -41.573483), (-19.134172, 0, -46.193977), (-9.754516, 0, -49.039265), (-9.184851e-15, 0, -50), (9.754516, 0, -49.039265), (19.134172, 0, -46.193977), (27.778511, 0, -41.573483), (35.35534, 0, -35.35534), (41.573483, 0, -27.778511), (46.193977, 0, -19.134172), (49.039265, 0, -9.754516), (49.039265, 9.754516, 0), (48.09699, 9.754516, 9.567086), (45.306374, 9.754516, 18.766514), (40.77466, 9.754516, 27.244755), (34.675995, 9.754516, 34.675995), (27.244755, 9.754516, 40.77466), (18.766514, 9.754516, 45.306374), (9.567086, 9.754516, 48.09699), (3.002789e-15, 9.754516, 49.039265), (-9.567086, 9.754516, 48.09699), (-18.766514, 9.754516, 45.306374), (-27.244755, 9.754516, 40.77466), (-34.675995, 9.754516, 34.675995), (-40.77466, 9.754516, 27.244755), (-45.306374, 9.754516, 18.766514), (-48.09699, 9.754516, 9.567086), (-49.039265, 9.754516, 6.005578e-15), (-48.09699, 9.754516, -9.567086), (-45.306374, 9.754516, -18.766514), (-40.77466, 9.754516, -27.244755), (-34.675995, 9.754516, -34.675995), (-27.244755, 9.754516, -40.77466), (-18.766514, 9.754516, -45.306374), (-9.567086, 9.754516, -48.09699), (-9.0083665e-15, 9.754516, -49.039265), (9.567086, 9.754516, -48.09699), (18.766514, 9.754516, -45.306374), (27.244755, 9.754516, -40.77466), (34.675995, 9.754516, -34.675995), (40.77466, 9.754516, -27.244755), (45.306374, 9.754516, -18.766514), (48.09699, 9.754516, -9.567086), (46.193977, 19.134172, 0), (45.306374, 19.134172, 9.011998), (42.67767, 19.134172, 17.67767), (38.408886, 19.134172, 25.663998), (32.664074, 19.134172, 32.664074), (25.663998, 19.134172, 38.408886), (17.67767, 19.134172, 42.67767), (9.011998, 19.134172, 45.306374), (2.8285653e-15, 19.134172, 46.193977), (-9.011998, 19.134172, 45.306374), (-17.67767, 19.134172, 42.67767), (-25.663998, 19.134172, 38.408886), (-32.664074, 19.134172, 32.664074), (-38.408886, 19.134172, 25.663998), (-42.67767, 19.134172, 17.67767), (-45.306374, 19.134172, 9.011998), (-46.193977, 19.134172, 5.6571306e-15), (-45.306374, 19.134172, -9.011998), (-42.67767, 19.134172, -17.67767), (-38.408886, 19.134172, -25.663998), (-32.664074, 19.134172, -32.664074), (-25.663998, 19.134172, -38.408886), (-17.67767, 19.134172, -42.67767), (-9.011998, 19.134172, -45.306374), (-8.4856955e-15, 19.134172, -46.193977), (9.011998, 19.134172, -45.306374), (17.67767, 19.134172, -42.67767), (25.663998, 19.134172, -38.408886), (32.664074, 19.134172, -32.664074), (38.408886, 19.134172, -25.663998), (42.67767, 19.134172, -17.67767), (45.306374, 19.134172, -9.011998), (41.573483, 27.778511, 0), (40.77466, 27.778511, 8.110583), (38.408886, 27.778511, 15.909482), (34.567085, 27.778511, 23.096989), (29.39689, 27.778511, 29.39689), (23.096989, 27.778511, 34.567085), (15.909482, 27.778511, 38.408886), (8.110583, 27.778511, 40.77466), (2.5456415e-15, 27.778511, 41.573483), (-8.110583, 27.778511, 40.77466), (-15.909482, 27.778511, 38.408886), (-23.096989, 27.778511, 34.567085), (-29.39689, 27.778511, 29.39689), (-34.567085, 27.778511, 23.096989), (-38.408886, 27.778511, 15.909482), (-40.77466, 27.778511, 8.110583), (-41.573483, 27.778511, 5.091283e-15), (-40.77466, 27.778511, -8.110583), (-38.408886, 27.778511, -15.909482), (-34.567085, 27.778511, -23.096989), (-29.39689, 27.778511, -29.39689), (-23.096989, 27.778511, -34.567085), (-15.909482, 27.778511, -38.408886), (-8.110583, 27.778511, -40.77466), (-7.6369244e-15, 27.778511, -41.573483), (8.110583, 27.778511, -40.77466), (15.909482, 27.778511, -38.408886), (23.096989, 27.778511, -34.567085), (29.39689, 27.778511, -29.39689), (34.567085, 27.778511, -23.096989), (38.408886, 27.778511, -15.909482), (40.77466, 27.778511, -8.110583), (35.35534, 35.35534, 0), (34.675995, 35.35534, 6.8974843), (32.664074, 35.35534, 13.529902), (29.39689, 35.35534, 19.642374), (25, 35.35534, 25), (19.642374, 35.35534, 29.39689), (13.529902, 35.35534, 32.664074), (6.8974843, 35.35534, 34.675995), (2.1648902e-15, 35.35534, 35.35534), (-6.8974843, 35.35534, 34.675995), (-13.529902, 35.35534, 32.664074), (-19.642374, 35.35534, 29.39689), (-25, 35.35534, 25), (-29.39689, 35.35534, 19.642374), (-32.664074, 35.35534, 13.529902), (-34.675995, 35.35534, 6.8974843), (-35.35534, 35.35534, 4.3297804e-15), (-34.675995, 35.35534, -6.8974843), (-32.664074, 35.35534, -13.529902), (-29.39689, 35.35534, -19.642374), (-25, 35.35534, -25), (-19.642374, 35.35534, -29.39689), (-13.529902, 35.35534, -32.664074), (-6.8974843, 35.35534, -34.675995), (-6.4946704e-15, 35.35534, -35.35534), (6.8974843, 35.35534, -34.675995), (13.529902, 35.35534, -32.664074), (19.642374, 35.35534, -29.39689), (25, 35.35534, -25), (29.39689, 35.35534, -19.642374), (32.664074, 35.35534, -13.529902), (34.675995, 35.35534, -6.8974843), (27.778511, 41.573483, 0), (27.244755, 41.573483, 5.4193187), (25.663998, 41.573483, 10.630376), (23.096989, 41.573483, 15.432914), (19.642374, 41.573483, 19.642374), (15.432914, 41.573483, 23.096989), (10.630376, 41.573483, 25.663998), (5.4193187, 41.573483, 27.244755), (1.7009433e-15, 41.573483, 27.778511), (-5.4193187, 41.573483, 27.244755), (-10.630376, 41.573483, 25.663998), (-15.432914, 41.573483, 23.096989), (-19.642374, 41.573483, 19.642374), (-23.096989, 41.573483, 15.432914), (-25.663998, 41.573483, 10.630376), (-27.244755, 41.573483, 5.4193187), (-27.778511, 41.573483, 3.4018865e-15), (-27.244755, 41.573483, -5.4193187), (-25.663998, 41.573483, -10.630376), (-23.096989, 41.573483, -15.432914), (-19.642374, 41.573483, -19.642374), (-15.432914, 41.573483, -23.096989), (-10.630376, 41.573483, -25.663998), (-5.4193187, 41.573483, -27.244755), (-5.1028297e-15, 41.573483, -27.778511), (5.4193187, 41.573483, -27.244755), (10.630376, 41.573483, -25.663998), (15.432914, 41.573483, -23.096989), (19.642374, 41.573483, -19.642374), (23.096989, 41.573483, -15.432914), (25.663998, 41.573483, -10.630376), (27.244755, 41.573483, -5.4193187), (19.134172, 46.193977, 0), (18.766514, 46.193977, 3.7328918), (17.67767, 46.193977, 7.3223305), (15.909482, 46.193977, 10.630376), (13.529902, 46.193977, 13.529902), (10.630376, 46.193977, 15.909482), (7.3223305, 46.193977, 17.67767), (3.7328918, 46.193977, 18.766514), (1.1716301e-15, 46.193977, 19.134172), (-3.7328918, 46.193977, 18.766514), (-7.3223305, 46.193977, 17.67767), (-10.630376, 46.193977, 15.909482), (-13.529902, 46.193977, 13.529902), (-15.909482, 46.193977, 10.630376), (-17.67767, 46.193977, 7.3223305), (-18.766514, 46.193977, 3.7328918), (-19.134172, 46.193977, 2.3432601e-15), (-18.766514, 46.193977, -3.7328918), (-17.67767, 46.193977, -7.3223305), (-15.909482, 46.193977, -10.630376), (-13.529902, 46.193977, -13.529902), (-10.630376, 46.193977, -15.909482), (-7.3223305, 46.193977, -17.67767), (-3.7328918, 46.193977, -18.766514), (-3.5148903e-15, 46.193977, -19.134172), (3.7328918, 46.193977, -18.766514), (7.3223305, 46.193977, -17.67767), (10.630376, 46.193977, -15.909482), (13.529902, 46.193977, -13.529902), (15.909482, 46.193977, -10.630376), (17.67767, 46.193977, -7.3223305), (18.766514, 46.193977, -3.7328918), (9.754516, 49.039265, 0), (9.567086, 49.039265, 1.9030117), (9.011998, 49.039265, 3.7328918), (8.110583, 49.039265, 5.4193187), (6.8974843, 49.039265, 6.8974843), (5.4193187, 49.039265, 8.110583), (3.7328918, 49.039265, 9.011998), (1.9030117, 49.039265, 9.567086), (5.9729185e-16, 49.039265, 9.754516), (-1.9030117, 49.039265, 9.567086), (-3.7328918, 49.039265, 9.011998), (-5.4193187, 49.039265, 8.110583), (-6.8974843, 49.039265, 6.8974843), (-8.110583, 49.039265, 5.4193187), (-9.011998, 49.039265, 3.7328918), (-9.567086, 49.039265, 1.9030117), (-9.754516, 49.039265, 1.1945837e-15), (-9.567086, 49.039265, -1.9030117), (-9.011998, 49.039265, -3.7328918), (-8.110583, 49.039265, -5.4193187), (-6.8974843, 49.039265, -6.8974843), (-5.4193187, 49.039265, -8.110583), (-3.7328918, 49.039265, -9.011998), (-1.9030117, 49.039265, -9.567086), (-1.7918755e-15, 49.039265, -9.754516), (1.9030117, 49.039265, -9.567086), (3.7328918, 49.039265, -9.011998), (5.4193187, 49.039265, -8.110583), (6.8974843, 49.039265, -6.8974843), (8.110583, 49.039265, -5.4193187), (9.011998, 49.039265, -3.7328918), (9.567086, 49.039265, -1.9030117), (0, 50, 0)] float2[] primvars:st = [(0.5, 0), (1, 0.0625), (0.96875, 0.0625), (0.5, 0), (0.96875, 0.0625), (0.9375, 0.0625), (0.5, 0), (0.9375, 0.0625), (0.90625, 0.0625), (0.5, 0), (0.90625, 0.0625), (0.875, 0.0625), (0.5, 0), (0.875, 0.0625), (0.84375, 0.0625), (0.5, 0), (0.84375, 0.0625), (0.8125, 0.0625), (0.5, 0), (0.8125, 0.0625), (0.78125, 0.0625), (0.5, 0), (0.78125, 0.0625), (0.75, 0.0625), (0.5, 0), (0.75, 0.0625), (0.71875, 0.0625), (0.5, 0), (0.71875, 0.0625), (0.6875, 0.0625), (0.5, 0), (0.6875, 0.0625), (0.65625, 0.0625), (0.5, 0), (0.65625, 0.0625), (0.625, 0.0625), (0.5, 0), (0.625, 0.0625), (0.59375, 0.0625), (0.5, 0), (0.59375, 0.0625), (0.5625, 0.0625), (0.5, 0), (0.5625, 0.0625), (0.53125, 0.0625), (0.5, 0), (0.53125, 0.0625), (0.5, 0.0625), (0.5, 0), (0.5, 0.0625), (0.46875, 0.0625), (0.5, 0), (0.46875, 0.0625), (0.4375, 0.0625), (0.5, 0), (0.4375, 0.0625), (0.40625, 0.0625), (0.5, 0), (0.40625, 0.0625), (0.375, 0.0625), (0.5, 0), (0.375, 0.0625), (0.34375, 0.0625), (0.5, 0), (0.34375, 0.0625), (0.3125, 0.0625), (0.5, 0), (0.3125, 0.0625), (0.28125, 0.0625), (0.5, 0), (0.28125, 0.0625), (0.25, 0.0625), (0.5, 0), (0.25, 0.0625), (0.21875, 0.0625), (0.5, 0), (0.21875, 0.0625), (0.1875, 0.0625), (0.5, 0), (0.1875, 0.0625), (0.15625, 0.0625), (0.5, 0), (0.15625, 0.0625), (0.125, 0.0625), (0.5, 0), (0.125, 0.0625), (0.09375, 0.0625), (0.5, 0), (0.09375, 0.0625), (0.0625, 0.0625), (0.5, 0), (0.0625, 0.0625), (0.03125, 0.0625), (0.5, 0), (0.03125, 0.0625), (0, 0.0625), (1, 0.0625), (1, 0.125), (0.96875, 0.125), (0.96875, 0.0625), (0.96875, 0.0625), (0.96875, 0.125), (0.9375, 0.125), (0.9375, 0.0625), (0.9375, 0.0625), (0.9375, 0.125), (0.90625, 0.125), (0.90625, 0.0625), (0.90625, 0.0625), (0.90625, 0.125), (0.875, 0.125), (0.875, 0.0625), (0.875, 0.0625), (0.875, 0.125), (0.84375, 0.125), (0.84375, 0.0625), (0.84375, 0.0625), (0.84375, 0.125), (0.8125, 0.125), (0.8125, 0.0625), (0.8125, 0.0625), (0.8125, 0.125), (0.78125, 0.125), (0.78125, 0.0625), (0.78125, 0.0625), (0.78125, 0.125), (0.75, 0.125), (0.75, 0.0625), (0.75, 0.0625), (0.75, 0.125), (0.71875, 0.125), (0.71875, 0.0625), (0.71875, 0.0625), (0.71875, 0.125), (0.6875, 0.125), (0.6875, 0.0625), (0.6875, 0.0625), (0.6875, 0.125), (0.65625, 0.125), (0.65625, 0.0625), (0.65625, 0.0625), (0.65625, 0.125), (0.625, 0.125), (0.625, 0.0625), (0.625, 0.0625), (0.625, 0.125), (0.59375, 0.125), (0.59375, 0.0625), (0.59375, 0.0625), (0.59375, 0.125), (0.5625, 0.125), (0.5625, 0.0625), (0.5625, 0.0625), (0.5625, 0.125), (0.53125, 0.125), (0.53125, 0.0625), (0.53125, 0.0625), (0.53125, 0.125), (0.5, 0.125), (0.5, 0.0625), (0.5, 0.0625), (0.5, 0.125), (0.46875, 0.125), (0.46875, 0.0625), (0.46875, 0.0625), (0.46875, 0.125), (0.4375, 0.125), (0.4375, 0.0625), (0.4375, 0.0625), (0.4375, 0.125), (0.40625, 0.125), (0.40625, 0.0625), (0.40625, 0.0625), (0.40625, 0.125), (0.375, 0.125), (0.375, 0.0625), (0.375, 0.0625), (0.375, 0.125), (0.34375, 0.125), (0.34375, 0.0625), (0.34375, 0.0625), (0.34375, 0.125), (0.3125, 0.125), (0.3125, 0.0625), (0.3125, 0.0625), (0.3125, 0.125), (0.28125, 0.125), (0.28125, 0.0625), (0.28125, 0.0625), (0.28125, 0.125), (0.25, 0.125), (0.25, 0.0625), (0.25, 0.0625), (0.25, 0.125), (0.21875, 0.125), (0.21875, 0.0625), (0.21875, 0.0625), (0.21875, 0.125), (0.1875, 0.125), (0.1875, 0.0625), (0.1875, 0.0625), (0.1875, 0.125), (0.15625, 0.125), (0.15625, 0.0625), (0.15625, 0.0625), (0.15625, 0.125), (0.125, 0.125), (0.125, 0.0625), (0.125, 0.0625), (0.125, 0.125), (0.09375, 0.125), (0.09375, 0.0625), (0.09375, 0.0625), (0.09375, 0.125), (0.0625, 0.125), (0.0625, 0.0625), (0.0625, 0.0625), (0.0625, 0.125), (0.03125, 0.125), (0.03125, 0.0625), (0.03125, 0.0625), (0.03125, 0.125), (0, 0.125), (0, 0.0625), (1, 0.125), (1, 0.1875), (0.96875, 0.1875), (0.96875, 0.125), (0.96875, 0.125), (0.96875, 0.1875), (0.9375, 0.1875), (0.9375, 0.125), (0.9375, 0.125), (0.9375, 0.1875), (0.90625, 0.1875), (0.90625, 0.125), (0.90625, 0.125), (0.90625, 0.1875), (0.875, 0.1875), (0.875, 0.125), (0.875, 0.125), (0.875, 0.1875), (0.84375, 0.1875), (0.84375, 0.125), (0.84375, 0.125), (0.84375, 0.1875), (0.8125, 0.1875), (0.8125, 0.125), (0.8125, 0.125), (0.8125, 0.1875), (0.78125, 0.1875), (0.78125, 0.125), (0.78125, 0.125), (0.78125, 0.1875), (0.75, 0.1875), (0.75, 0.125), (0.75, 0.125), (0.75, 0.1875), (0.71875, 0.1875), (0.71875, 0.125), (0.71875, 0.125), (0.71875, 0.1875), (0.6875, 0.1875), (0.6875, 0.125), (0.6875, 0.125), (0.6875, 0.1875), (0.65625, 0.1875), (0.65625, 0.125), (0.65625, 0.125), (0.65625, 0.1875), (0.625, 0.1875), (0.625, 0.125), (0.625, 0.125), (0.625, 0.1875), (0.59375, 0.1875), (0.59375, 0.125), (0.59375, 0.125), (0.59375, 0.1875), (0.5625, 0.1875), (0.5625, 0.125), (0.5625, 0.125), (0.5625, 0.1875), (0.53125, 0.1875), (0.53125, 0.125), (0.53125, 0.125), (0.53125, 0.1875), (0.5, 0.1875), (0.5, 0.125), (0.5, 0.125), (0.5, 0.1875), (0.46875, 0.1875), (0.46875, 0.125), (0.46875, 0.125), (0.46875, 0.1875), (0.4375, 0.1875), (0.4375, 0.125), (0.4375, 0.125), (0.4375, 0.1875), (0.40625, 0.1875), (0.40625, 0.125), (0.40625, 0.125), (0.40625, 0.1875), (0.375, 0.1875), (0.375, 0.125), (0.375, 0.125), (0.375, 0.1875), (0.34375, 0.1875), (0.34375, 0.125), (0.34375, 0.125), (0.34375, 0.1875), (0.3125, 0.1875), (0.3125, 0.125), (0.3125, 0.125), (0.3125, 0.1875), (0.28125, 0.1875), (0.28125, 0.125), (0.28125, 0.125), (0.28125, 0.1875), (0.25, 0.1875), (0.25, 0.125), (0.25, 0.125), (0.25, 0.1875), (0.21875, 0.1875), (0.21875, 0.125), (0.21875, 0.125), (0.21875, 0.1875), (0.1875, 0.1875), (0.1875, 0.125), (0.1875, 0.125), (0.1875, 0.1875), (0.15625, 0.1875), (0.15625, 0.125), (0.15625, 0.125), (0.15625, 0.1875), (0.125, 0.1875), (0.125, 0.125), (0.125, 0.125), (0.125, 0.1875), (0.09375, 0.1875), (0.09375, 0.125), (0.09375, 0.125), (0.09375, 0.1875), (0.0625, 0.1875), (0.0625, 0.125), (0.0625, 0.125), (0.0625, 0.1875), (0.03125, 0.1875), (0.03125, 0.125), (0.03125, 0.125), (0.03125, 0.1875), (0, 0.1875), (0, 0.125), (1, 0.1875), (1, 0.25), (0.96875, 0.25), (0.96875, 0.1875), (0.96875, 0.1875), (0.96875, 0.25), (0.9375, 0.25), (0.9375, 0.1875), (0.9375, 0.1875), (0.9375, 0.25), (0.90625, 0.25), (0.90625, 0.1875), (0.90625, 0.1875), (0.90625, 0.25), (0.875, 0.25), (0.875, 0.1875), (0.875, 0.1875), (0.875, 0.25), (0.84375, 0.25), (0.84375, 0.1875), (0.84375, 0.1875), (0.84375, 0.25), (0.8125, 0.25), (0.8125, 0.1875), (0.8125, 0.1875), (0.8125, 0.25), (0.78125, 0.25), (0.78125, 0.1875), (0.78125, 0.1875), (0.78125, 0.25), (0.75, 0.25), (0.75, 0.1875), (0.75, 0.1875), (0.75, 0.25), (0.71875, 0.25), (0.71875, 0.1875), (0.71875, 0.1875), (0.71875, 0.25), (0.6875, 0.25), (0.6875, 0.1875), (0.6875, 0.1875), (0.6875, 0.25), (0.65625, 0.25), (0.65625, 0.1875), (0.65625, 0.1875), (0.65625, 0.25), (0.625, 0.25), (0.625, 0.1875), (0.625, 0.1875), (0.625, 0.25), (0.59375, 0.25), (0.59375, 0.1875), (0.59375, 0.1875), (0.59375, 0.25), (0.5625, 0.25), (0.5625, 0.1875), (0.5625, 0.1875), (0.5625, 0.25), (0.53125, 0.25), (0.53125, 0.1875), (0.53125, 0.1875), (0.53125, 0.25), (0.5, 0.25), (0.5, 0.1875), (0.5, 0.1875), (0.5, 0.25), (0.46875, 0.25), (0.46875, 0.1875), (0.46875, 0.1875), (0.46875, 0.25), (0.4375, 0.25), (0.4375, 0.1875), (0.4375, 0.1875), (0.4375, 0.25), (0.40625, 0.25), (0.40625, 0.1875), (0.40625, 0.1875), (0.40625, 0.25), (0.375, 0.25), (0.375, 0.1875), (0.375, 0.1875), (0.375, 0.25), (0.34375, 0.25), (0.34375, 0.1875), (0.34375, 0.1875), (0.34375, 0.25), (0.3125, 0.25), (0.3125, 0.1875), (0.3125, 0.1875), (0.3125, 0.25), (0.28125, 0.25), (0.28125, 0.1875), (0.28125, 0.1875), (0.28125, 0.25), (0.25, 0.25), (0.25, 0.1875), (0.25, 0.1875), (0.25, 0.25), (0.21875, 0.25), (0.21875, 0.1875), (0.21875, 0.1875), (0.21875, 0.25), (0.1875, 0.25), (0.1875, 0.1875), (0.1875, 0.1875), (0.1875, 0.25), (0.15625, 0.25), (0.15625, 0.1875), (0.15625, 0.1875), (0.15625, 0.25), (0.125, 0.25), (0.125, 0.1875), (0.125, 0.1875), (0.125, 0.25), (0.09375, 0.25), (0.09375, 0.1875), (0.09375, 0.1875), (0.09375, 0.25), (0.0625, 0.25), (0.0625, 0.1875), (0.0625, 0.1875), (0.0625, 0.25), (0.03125, 0.25), (0.03125, 0.1875), (0.03125, 0.1875), (0.03125, 0.25), (0, 0.25), (0, 0.1875), (1, 0.25), (1, 0.3125), (0.96875, 0.3125), (0.96875, 0.25), (0.96875, 0.25), (0.96875, 0.3125), (0.9375, 0.3125), (0.9375, 0.25), (0.9375, 0.25), (0.9375, 0.3125), (0.90625, 0.3125), (0.90625, 0.25), (0.90625, 0.25), (0.90625, 0.3125), (0.875, 0.3125), (0.875, 0.25), (0.875, 0.25), (0.875, 0.3125), (0.84375, 0.3125), (0.84375, 0.25), (0.84375, 0.25), (0.84375, 0.3125), (0.8125, 0.3125), (0.8125, 0.25), (0.8125, 0.25), (0.8125, 0.3125), (0.78125, 0.3125), (0.78125, 0.25), (0.78125, 0.25), (0.78125, 0.3125), (0.75, 0.3125), (0.75, 0.25), (0.75, 0.25), (0.75, 0.3125), (0.71875, 0.3125), (0.71875, 0.25), (0.71875, 0.25), (0.71875, 0.3125), (0.6875, 0.3125), (0.6875, 0.25), (0.6875, 0.25), (0.6875, 0.3125), (0.65625, 0.3125), (0.65625, 0.25), (0.65625, 0.25), (0.65625, 0.3125), (0.625, 0.3125), (0.625, 0.25), (0.625, 0.25), (0.625, 0.3125), (0.59375, 0.3125), (0.59375, 0.25), (0.59375, 0.25), (0.59375, 0.3125), (0.5625, 0.3125), (0.5625, 0.25), (0.5625, 0.25), (0.5625, 0.3125), (0.53125, 0.3125), (0.53125, 0.25), (0.53125, 0.25), (0.53125, 0.3125), (0.5, 0.3125), (0.5, 0.25), (0.5, 0.25), (0.5, 0.3125), (0.46875, 0.3125), (0.46875, 0.25), (0.46875, 0.25), (0.46875, 0.3125), (0.4375, 0.3125), (0.4375, 0.25), (0.4375, 0.25), (0.4375, 0.3125), (0.40625, 0.3125), (0.40625, 0.25), (0.40625, 0.25), (0.40625, 0.3125), (0.375, 0.3125), (0.375, 0.25), (0.375, 0.25), (0.375, 0.3125), (0.34375, 0.3125), (0.34375, 0.25), (0.34375, 0.25), (0.34375, 0.3125), (0.3125, 0.3125), (0.3125, 0.25), (0.3125, 0.25), (0.3125, 0.3125), (0.28125, 0.3125), (0.28125, 0.25), (0.28125, 0.25), (0.28125, 0.3125), (0.25, 0.3125), (0.25, 0.25), (0.25, 0.25), (0.25, 0.3125), (0.21875, 0.3125), (0.21875, 0.25), (0.21875, 0.25), (0.21875, 0.3125), (0.1875, 0.3125), (0.1875, 0.25), (0.1875, 0.25), (0.1875, 0.3125), (0.15625, 0.3125), (0.15625, 0.25), (0.15625, 0.25), (0.15625, 0.3125), (0.125, 0.3125), (0.125, 0.25), (0.125, 0.25), (0.125, 0.3125), (0.09375, 0.3125), (0.09375, 0.25), (0.09375, 0.25), (0.09375, 0.3125), (0.0625, 0.3125), (0.0625, 0.25), (0.0625, 0.25), (0.0625, 0.3125), (0.03125, 0.3125), (0.03125, 0.25), (0.03125, 0.25), (0.03125, 0.3125), (0, 0.3125), (0, 0.25), (1, 0.3125), (1, 0.375), (0.96875, 0.375), (0.96875, 0.3125), (0.96875, 0.3125), (0.96875, 0.375), (0.9375, 0.375), (0.9375, 0.3125), (0.9375, 0.3125), (0.9375, 0.375), (0.90625, 0.375), (0.90625, 0.3125), (0.90625, 0.3125), (0.90625, 0.375), (0.875, 0.375), (0.875, 0.3125), (0.875, 0.3125), (0.875, 0.375), (0.84375, 0.375), (0.84375, 0.3125), (0.84375, 0.3125), (0.84375, 0.375), (0.8125, 0.375), (0.8125, 0.3125), (0.8125, 0.3125), (0.8125, 0.375), (0.78125, 0.375), (0.78125, 0.3125), (0.78125, 0.3125), (0.78125, 0.375), (0.75, 0.375), (0.75, 0.3125), (0.75, 0.3125), (0.75, 0.375), (0.71875, 0.375), (0.71875, 0.3125), (0.71875, 0.3125), (0.71875, 0.375), (0.6875, 0.375), (0.6875, 0.3125), (0.6875, 0.3125), (0.6875, 0.375), (0.65625, 0.375), (0.65625, 0.3125), (0.65625, 0.3125), (0.65625, 0.375), (0.625, 0.375), (0.625, 0.3125), (0.625, 0.3125), (0.625, 0.375), (0.59375, 0.375), (0.59375, 0.3125), (0.59375, 0.3125), (0.59375, 0.375), (0.5625, 0.375), (0.5625, 0.3125), (0.5625, 0.3125), (0.5625, 0.375), (0.53125, 0.375), (0.53125, 0.3125), (0.53125, 0.3125), (0.53125, 0.375), (0.5, 0.375), (0.5, 0.3125), (0.5, 0.3125), (0.5, 0.375), (0.46875, 0.375), (0.46875, 0.3125), (0.46875, 0.3125), (0.46875, 0.375), (0.4375, 0.375), (0.4375, 0.3125), (0.4375, 0.3125), (0.4375, 0.375), (0.40625, 0.375), (0.40625, 0.3125), (0.40625, 0.3125), (0.40625, 0.375), (0.375, 0.375), (0.375, 0.3125), (0.375, 0.3125), (0.375, 0.375), (0.34375, 0.375), (0.34375, 0.3125), (0.34375, 0.3125), (0.34375, 0.375), (0.3125, 0.375), (0.3125, 0.3125), (0.3125, 0.3125), (0.3125, 0.375), (0.28125, 0.375), (0.28125, 0.3125), (0.28125, 0.3125), (0.28125, 0.375), (0.25, 0.375), (0.25, 0.3125), (0.25, 0.3125), (0.25, 0.375), (0.21875, 0.375), (0.21875, 0.3125), (0.21875, 0.3125), (0.21875, 0.375), (0.1875, 0.375), (0.1875, 0.3125), (0.1875, 0.3125), (0.1875, 0.375), (0.15625, 0.375), (0.15625, 0.3125), (0.15625, 0.3125), (0.15625, 0.375), (0.125, 0.375), (0.125, 0.3125), (0.125, 0.3125), (0.125, 0.375), (0.09375, 0.375), (0.09375, 0.3125), (0.09375, 0.3125), (0.09375, 0.375), (0.0625, 0.375), (0.0625, 0.3125), (0.0625, 0.3125), (0.0625, 0.375), (0.03125, 0.375), (0.03125, 0.3125), (0.03125, 0.3125), (0.03125, 0.375), (0, 0.375), (0, 0.3125), (1, 0.375), (1, 0.4375), (0.96875, 0.4375), (0.96875, 0.375), (0.96875, 0.375), (0.96875, 0.4375), (0.9375, 0.4375), (0.9375, 0.375), (0.9375, 0.375), (0.9375, 0.4375), (0.90625, 0.4375), (0.90625, 0.375), (0.90625, 0.375), (0.90625, 0.4375), (0.875, 0.4375), (0.875, 0.375), (0.875, 0.375), (0.875, 0.4375), (0.84375, 0.4375), (0.84375, 0.375), (0.84375, 0.375), (0.84375, 0.4375), (0.8125, 0.4375), (0.8125, 0.375), (0.8125, 0.375), (0.8125, 0.4375), (0.78125, 0.4375), (0.78125, 0.375), (0.78125, 0.375), (0.78125, 0.4375), (0.75, 0.4375), (0.75, 0.375), (0.75, 0.375), (0.75, 0.4375), (0.71875, 0.4375), (0.71875, 0.375), (0.71875, 0.375), (0.71875, 0.4375), (0.6875, 0.4375), (0.6875, 0.375), (0.6875, 0.375), (0.6875, 0.4375), (0.65625, 0.4375), (0.65625, 0.375), (0.65625, 0.375), (0.65625, 0.4375), (0.625, 0.4375), (0.625, 0.375), (0.625, 0.375), (0.625, 0.4375), (0.59375, 0.4375), (0.59375, 0.375), (0.59375, 0.375), (0.59375, 0.4375), (0.5625, 0.4375), (0.5625, 0.375), (0.5625, 0.375), (0.5625, 0.4375), (0.53125, 0.4375), (0.53125, 0.375), (0.53125, 0.375), (0.53125, 0.4375), (0.5, 0.4375), (0.5, 0.375), (0.5, 0.375), (0.5, 0.4375), (0.46875, 0.4375), (0.46875, 0.375), (0.46875, 0.375), (0.46875, 0.4375), (0.4375, 0.4375), (0.4375, 0.375), (0.4375, 0.375), (0.4375, 0.4375), (0.40625, 0.4375), (0.40625, 0.375), (0.40625, 0.375), (0.40625, 0.4375), (0.375, 0.4375), (0.375, 0.375), (0.375, 0.375), (0.375, 0.4375), (0.34375, 0.4375), (0.34375, 0.375), (0.34375, 0.375), (0.34375, 0.4375), (0.3125, 0.4375), (0.3125, 0.375), (0.3125, 0.375), (0.3125, 0.4375), (0.28125, 0.4375), (0.28125, 0.375), (0.28125, 0.375), (0.28125, 0.4375), (0.25, 0.4375), (0.25, 0.375), (0.25, 0.375), (0.25, 0.4375), (0.21875, 0.4375), (0.21875, 0.375), (0.21875, 0.375), (0.21875, 0.4375), (0.1875, 0.4375), (0.1875, 0.375), (0.1875, 0.375), (0.1875, 0.4375), (0.15625, 0.4375), (0.15625, 0.375), (0.15625, 0.375), (0.15625, 0.4375), (0.125, 0.4375), (0.125, 0.375), (0.125, 0.375), (0.125, 0.4375), (0.09375, 0.4375), (0.09375, 0.375), (0.09375, 0.375), (0.09375, 0.4375), (0.0625, 0.4375), (0.0625, 0.375), (0.0625, 0.375), (0.0625, 0.4375), (0.03125, 0.4375), (0.03125, 0.375), (0.03125, 0.375), (0.03125, 0.4375), (0, 0.4375), (0, 0.375), (1, 0.4375), (1, 0.5), (0.96875, 0.5), (0.96875, 0.4375), (0.96875, 0.4375), (0.96875, 0.5), (0.9375, 0.5), (0.9375, 0.4375), (0.9375, 0.4375), (0.9375, 0.5), (0.90625, 0.5), (0.90625, 0.4375), (0.90625, 0.4375), (0.90625, 0.5), (0.875, 0.5), (0.875, 0.4375), (0.875, 0.4375), (0.875, 0.5), (0.84375, 0.5), (0.84375, 0.4375), (0.84375, 0.4375), (0.84375, 0.5), (0.8125, 0.5), (0.8125, 0.4375), (0.8125, 0.4375), (0.8125, 0.5), (0.78125, 0.5), (0.78125, 0.4375), (0.78125, 0.4375), (0.78125, 0.5), (0.75, 0.5), (0.75, 0.4375), (0.75, 0.4375), (0.75, 0.5), (0.71875, 0.5), (0.71875, 0.4375), (0.71875, 0.4375), (0.71875, 0.5), (0.6875, 0.5), (0.6875, 0.4375), (0.6875, 0.4375), (0.6875, 0.5), (0.65625, 0.5), (0.65625, 0.4375), (0.65625, 0.4375), (0.65625, 0.5), (0.625, 0.5), (0.625, 0.4375), (0.625, 0.4375), (0.625, 0.5), (0.59375, 0.5), (0.59375, 0.4375), (0.59375, 0.4375), (0.59375, 0.5), (0.5625, 0.5), (0.5625, 0.4375), (0.5625, 0.4375), (0.5625, 0.5), (0.53125, 0.5), (0.53125, 0.4375), (0.53125, 0.4375), (0.53125, 0.5), (0.5, 0.5), (0.5, 0.4375), (0.5, 0.4375), (0.5, 0.5), (0.46875, 0.5), (0.46875, 0.4375), (0.46875, 0.4375), (0.46875, 0.5), (0.4375, 0.5), (0.4375, 0.4375), (0.4375, 0.4375), (0.4375, 0.5), (0.40625, 0.5), (0.40625, 0.4375), (0.40625, 0.4375), (0.40625, 0.5), (0.375, 0.5), (0.375, 0.4375), (0.375, 0.4375), (0.375, 0.5), (0.34375, 0.5), (0.34375, 0.4375), (0.34375, 0.4375), (0.34375, 0.5), (0.3125, 0.5), (0.3125, 0.4375), (0.3125, 0.4375), (0.3125, 0.5), (0.28125, 0.5), (0.28125, 0.4375), (0.28125, 0.4375), (0.28125, 0.5), (0.25, 0.5), (0.25, 0.4375), (0.25, 0.4375), (0.25, 0.5), (0.21875, 0.5), (0.21875, 0.4375), (0.21875, 0.4375), (0.21875, 0.5), (0.1875, 0.5), (0.1875, 0.4375), (0.1875, 0.4375), (0.1875, 0.5), (0.15625, 0.5), (0.15625, 0.4375), (0.15625, 0.4375), (0.15625, 0.5), (0.125, 0.5), (0.125, 0.4375), (0.125, 0.4375), (0.125, 0.5), (0.09375, 0.5), (0.09375, 0.4375), (0.09375, 0.4375), (0.09375, 0.5), (0.0625, 0.5), (0.0625, 0.4375), (0.0625, 0.4375), (0.0625, 0.5), (0.03125, 0.5), (0.03125, 0.4375), (0.03125, 0.4375), (0.03125, 0.5), (0, 0.5), (0, 0.4375), (1, 0.5), (1, 0.5625), (0.96875, 0.5625), (0.96875, 0.5), (0.96875, 0.5), (0.96875, 0.5625), (0.9375, 0.5625), (0.9375, 0.5), (0.9375, 0.5), (0.9375, 0.5625), (0.90625, 0.5625), (0.90625, 0.5), (0.90625, 0.5), (0.90625, 0.5625), (0.875, 0.5625), (0.875, 0.5), (0.875, 0.5), (0.875, 0.5625), (0.84375, 0.5625), (0.84375, 0.5), (0.84375, 0.5), (0.84375, 0.5625), (0.8125, 0.5625), (0.8125, 0.5), (0.8125, 0.5), (0.8125, 0.5625), (0.78125, 0.5625), (0.78125, 0.5), (0.78125, 0.5), (0.78125, 0.5625), (0.75, 0.5625), (0.75, 0.5), (0.75, 0.5), (0.75, 0.5625), (0.71875, 0.5625), (0.71875, 0.5), (0.71875, 0.5), (0.71875, 0.5625), (0.6875, 0.5625), (0.6875, 0.5), (0.6875, 0.5), (0.6875, 0.5625), (0.65625, 0.5625), (0.65625, 0.5), (0.65625, 0.5), (0.65625, 0.5625), (0.625, 0.5625), (0.625, 0.5), (0.625, 0.5), (0.625, 0.5625), (0.59375, 0.5625), (0.59375, 0.5), (0.59375, 0.5), (0.59375, 0.5625), (0.5625, 0.5625), (0.5625, 0.5), (0.5625, 0.5), (0.5625, 0.5625), (0.53125, 0.5625), (0.53125, 0.5), (0.53125, 0.5), (0.53125, 0.5625), (0.5, 0.5625), (0.5, 0.5), (0.5, 0.5), (0.5, 0.5625), (0.46875, 0.5625), (0.46875, 0.5), (0.46875, 0.5), (0.46875, 0.5625), (0.4375, 0.5625), (0.4375, 0.5), (0.4375, 0.5), (0.4375, 0.5625), (0.40625, 0.5625), (0.40625, 0.5), (0.40625, 0.5), (0.40625, 0.5625), (0.375, 0.5625), (0.375, 0.5), (0.375, 0.5), (0.375, 0.5625), (0.34375, 0.5625), (0.34375, 0.5), (0.34375, 0.5), (0.34375, 0.5625), (0.3125, 0.5625), (0.3125, 0.5), (0.3125, 0.5), (0.3125, 0.5625), (0.28125, 0.5625), (0.28125, 0.5), (0.28125, 0.5), (0.28125, 0.5625), (0.25, 0.5625), (0.25, 0.5), (0.25, 0.5), (0.25, 0.5625), (0.21875, 0.5625), (0.21875, 0.5), (0.21875, 0.5), (0.21875, 0.5625), (0.1875, 0.5625), (0.1875, 0.5), (0.1875, 0.5), (0.1875, 0.5625), (0.15625, 0.5625), (0.15625, 0.5), (0.15625, 0.5), (0.15625, 0.5625), (0.125, 0.5625), (0.125, 0.5), (0.125, 0.5), (0.125, 0.5625), (0.09375, 0.5625), (0.09375, 0.5), (0.09375, 0.5), (0.09375, 0.5625), (0.0625, 0.5625), (0.0625, 0.5), (0.0625, 0.5), (0.0625, 0.5625), (0.03125, 0.5625), (0.03125, 0.5), (0.03125, 0.5), (0.03125, 0.5625), (0, 0.5625), (0, 0.5), (1, 0.5625), (1, 0.625), (0.96875, 0.625), (0.96875, 0.5625), (0.96875, 0.5625), (0.96875, 0.625), (0.9375, 0.625), (0.9375, 0.5625), (0.9375, 0.5625), (0.9375, 0.625), (0.90625, 0.625), (0.90625, 0.5625), (0.90625, 0.5625), (0.90625, 0.625), (0.875, 0.625), (0.875, 0.5625), (0.875, 0.5625), (0.875, 0.625), (0.84375, 0.625), (0.84375, 0.5625), (0.84375, 0.5625), (0.84375, 0.625), (0.8125, 0.625), (0.8125, 0.5625), (0.8125, 0.5625), (0.8125, 0.625), (0.78125, 0.625), (0.78125, 0.5625), (0.78125, 0.5625), (0.78125, 0.625), (0.75, 0.625), (0.75, 0.5625), (0.75, 0.5625), (0.75, 0.625), (0.71875, 0.625), (0.71875, 0.5625), (0.71875, 0.5625), (0.71875, 0.625), (0.6875, 0.625), (0.6875, 0.5625), (0.6875, 0.5625), (0.6875, 0.625), (0.65625, 0.625), (0.65625, 0.5625), (0.65625, 0.5625), (0.65625, 0.625), (0.625, 0.625), (0.625, 0.5625), (0.625, 0.5625), (0.625, 0.625), (0.59375, 0.625), (0.59375, 0.5625), (0.59375, 0.5625), (0.59375, 0.625), (0.5625, 0.625), (0.5625, 0.5625), (0.5625, 0.5625), (0.5625, 0.625), (0.53125, 0.625), (0.53125, 0.5625), (0.53125, 0.5625), (0.53125, 0.625), (0.5, 0.625), (0.5, 0.5625), (0.5, 0.5625), (0.5, 0.625), (0.46875, 0.625), (0.46875, 0.5625), (0.46875, 0.5625), (0.46875, 0.625), (0.4375, 0.625), (0.4375, 0.5625), (0.4375, 0.5625), (0.4375, 0.625), (0.40625, 0.625), (0.40625, 0.5625), (0.40625, 0.5625), (0.40625, 0.625), (0.375, 0.625), (0.375, 0.5625), (0.375, 0.5625), (0.375, 0.625), (0.34375, 0.625), (0.34375, 0.5625), (0.34375, 0.5625), (0.34375, 0.625), (0.3125, 0.625), (0.3125, 0.5625), (0.3125, 0.5625), (0.3125, 0.625), (0.28125, 0.625), (0.28125, 0.5625), (0.28125, 0.5625), (0.28125, 0.625), (0.25, 0.625), (0.25, 0.5625), (0.25, 0.5625), (0.25, 0.625), (0.21875, 0.625), (0.21875, 0.5625), (0.21875, 0.5625), (0.21875, 0.625), (0.1875, 0.625), (0.1875, 0.5625), (0.1875, 0.5625), (0.1875, 0.625), (0.15625, 0.625), (0.15625, 0.5625), (0.15625, 0.5625), (0.15625, 0.625), (0.125, 0.625), (0.125, 0.5625), (0.125, 0.5625), (0.125, 0.625), (0.09375, 0.625), (0.09375, 0.5625), (0.09375, 0.5625), (0.09375, 0.625), (0.0625, 0.625), (0.0625, 0.5625), (0.0625, 0.5625), (0.0625, 0.625), (0.03125, 0.625), (0.03125, 0.5625), (0.03125, 0.5625), (0.03125, 0.625), (0, 0.625), (0, 0.5625), (1, 0.625), (1, 0.6875), (0.96875, 0.6875), (0.96875, 0.625), (0.96875, 0.625), (0.96875, 0.6875), (0.9375, 0.6875), (0.9375, 0.625), (0.9375, 0.625), (0.9375, 0.6875), (0.90625, 0.6875), (0.90625, 0.625), (0.90625, 0.625), (0.90625, 0.6875), (0.875, 0.6875), (0.875, 0.625), (0.875, 0.625), (0.875, 0.6875), (0.84375, 0.6875), (0.84375, 0.625), (0.84375, 0.625), (0.84375, 0.6875), (0.8125, 0.6875), (0.8125, 0.625), (0.8125, 0.625), (0.8125, 0.6875), (0.78125, 0.6875), (0.78125, 0.625), (0.78125, 0.625), (0.78125, 0.6875), (0.75, 0.6875), (0.75, 0.625), (0.75, 0.625), (0.75, 0.6875), (0.71875, 0.6875), (0.71875, 0.625), (0.71875, 0.625), (0.71875, 0.6875), (0.6875, 0.6875), (0.6875, 0.625), (0.6875, 0.625), (0.6875, 0.6875), (0.65625, 0.6875), (0.65625, 0.625), (0.65625, 0.625), (0.65625, 0.6875), (0.625, 0.6875), (0.625, 0.625), (0.625, 0.625), (0.625, 0.6875), (0.59375, 0.6875), (0.59375, 0.625), (0.59375, 0.625), (0.59375, 0.6875), (0.5625, 0.6875), (0.5625, 0.625), (0.5625, 0.625), (0.5625, 0.6875), (0.53125, 0.6875), (0.53125, 0.625), (0.53125, 0.625), (0.53125, 0.6875), (0.5, 0.6875), (0.5, 0.625), (0.5, 0.625), (0.5, 0.6875), (0.46875, 0.6875), (0.46875, 0.625), (0.46875, 0.625), (0.46875, 0.6875), (0.4375, 0.6875), (0.4375, 0.625), (0.4375, 0.625), (0.4375, 0.6875), (0.40625, 0.6875), (0.40625, 0.625), (0.40625, 0.625), (0.40625, 0.6875), (0.375, 0.6875), (0.375, 0.625), (0.375, 0.625), (0.375, 0.6875), (0.34375, 0.6875), (0.34375, 0.625), (0.34375, 0.625), (0.34375, 0.6875), (0.3125, 0.6875), (0.3125, 0.625), (0.3125, 0.625), (0.3125, 0.6875), (0.28125, 0.6875), (0.28125, 0.625), (0.28125, 0.625), (0.28125, 0.6875), (0.25, 0.6875), (0.25, 0.625), (0.25, 0.625), (0.25, 0.6875), (0.21875, 0.6875), (0.21875, 0.625), (0.21875, 0.625), (0.21875, 0.6875), (0.1875, 0.6875), (0.1875, 0.625), (0.1875, 0.625), (0.1875, 0.6875), (0.15625, 0.6875), (0.15625, 0.625), (0.15625, 0.625), (0.15625, 0.6875), (0.125, 0.6875), (0.125, 0.625), (0.125, 0.625), (0.125, 0.6875), (0.09375, 0.6875), (0.09375, 0.625), (0.09375, 0.625), (0.09375, 0.6875), (0.0625, 0.6875), (0.0625, 0.625), (0.0625, 0.625), (0.0625, 0.6875), (0.03125, 0.6875), (0.03125, 0.625), (0.03125, 0.625), (0.03125, 0.6875), (0, 0.6875), (0, 0.625), (1, 0.6875), (1, 0.75), (0.96875, 0.75), (0.96875, 0.6875), (0.96875, 0.6875), (0.96875, 0.75), (0.9375, 0.75), (0.9375, 0.6875), (0.9375, 0.6875), (0.9375, 0.75), (0.90625, 0.75), (0.90625, 0.6875), (0.90625, 0.6875), (0.90625, 0.75), (0.875, 0.75), (0.875, 0.6875), (0.875, 0.6875), (0.875, 0.75), (0.84375, 0.75), (0.84375, 0.6875), (0.84375, 0.6875), (0.84375, 0.75), (0.8125, 0.75), (0.8125, 0.6875), (0.8125, 0.6875), (0.8125, 0.75), (0.78125, 0.75), (0.78125, 0.6875), (0.78125, 0.6875), (0.78125, 0.75), (0.75, 0.75), (0.75, 0.6875), (0.75, 0.6875), (0.75, 0.75), (0.71875, 0.75), (0.71875, 0.6875), (0.71875, 0.6875), (0.71875, 0.75), (0.6875, 0.75), (0.6875, 0.6875), (0.6875, 0.6875), (0.6875, 0.75), (0.65625, 0.75), (0.65625, 0.6875), (0.65625, 0.6875), (0.65625, 0.75), (0.625, 0.75), (0.625, 0.6875), (0.625, 0.6875), (0.625, 0.75), (0.59375, 0.75), (0.59375, 0.6875), (0.59375, 0.6875), (0.59375, 0.75), (0.5625, 0.75), (0.5625, 0.6875), (0.5625, 0.6875), (0.5625, 0.75), (0.53125, 0.75), (0.53125, 0.6875), (0.53125, 0.6875), (0.53125, 0.75), (0.5, 0.75), (0.5, 0.6875), (0.5, 0.6875), (0.5, 0.75), (0.46875, 0.75), (0.46875, 0.6875), (0.46875, 0.6875), (0.46875, 0.75), (0.4375, 0.75), (0.4375, 0.6875), (0.4375, 0.6875), (0.4375, 0.75), (0.40625, 0.75), (0.40625, 0.6875), (0.40625, 0.6875), (0.40625, 0.75), (0.375, 0.75), (0.375, 0.6875), (0.375, 0.6875), (0.375, 0.75), (0.34375, 0.75), (0.34375, 0.6875), (0.34375, 0.6875), (0.34375, 0.75), (0.3125, 0.75), (0.3125, 0.6875), (0.3125, 0.6875), (0.3125, 0.75), (0.28125, 0.75), (0.28125, 0.6875), (0.28125, 0.6875), (0.28125, 0.75), (0.25, 0.75), (0.25, 0.6875), (0.25, 0.6875), (0.25, 0.75), (0.21875, 0.75), (0.21875, 0.6875), (0.21875, 0.6875), (0.21875, 0.75), (0.1875, 0.75), (0.1875, 0.6875), (0.1875, 0.6875), (0.1875, 0.75), (0.15625, 0.75), (0.15625, 0.6875), (0.15625, 0.6875), (0.15625, 0.75), (0.125, 0.75), (0.125, 0.6875), (0.125, 0.6875), (0.125, 0.75), (0.09375, 0.75), (0.09375, 0.6875), (0.09375, 0.6875), (0.09375, 0.75), (0.0625, 0.75), (0.0625, 0.6875), (0.0625, 0.6875), (0.0625, 0.75), (0.03125, 0.75), (0.03125, 0.6875), (0.03125, 0.6875), (0.03125, 0.75), (0, 0.75), (0, 0.6875), (1, 0.75), (1, 0.8125), (0.96875, 0.8125), (0.96875, 0.75), (0.96875, 0.75), (0.96875, 0.8125), (0.9375, 0.8125), (0.9375, 0.75), (0.9375, 0.75), (0.9375, 0.8125), (0.90625, 0.8125), (0.90625, 0.75), (0.90625, 0.75), (0.90625, 0.8125), (0.875, 0.8125), (0.875, 0.75), (0.875, 0.75), (0.875, 0.8125), (0.84375, 0.8125), (0.84375, 0.75), (0.84375, 0.75), (0.84375, 0.8125), (0.8125, 0.8125), (0.8125, 0.75), (0.8125, 0.75), (0.8125, 0.8125), (0.78125, 0.8125), (0.78125, 0.75), (0.78125, 0.75), (0.78125, 0.8125), (0.75, 0.8125), (0.75, 0.75), (0.75, 0.75), (0.75, 0.8125), (0.71875, 0.8125), (0.71875, 0.75), (0.71875, 0.75), (0.71875, 0.8125), (0.6875, 0.8125), (0.6875, 0.75), (0.6875, 0.75), (0.6875, 0.8125), (0.65625, 0.8125), (0.65625, 0.75), (0.65625, 0.75), (0.65625, 0.8125), (0.625, 0.8125), (0.625, 0.75), (0.625, 0.75), (0.625, 0.8125), (0.59375, 0.8125), (0.59375, 0.75), (0.59375, 0.75), (0.59375, 0.8125), (0.5625, 0.8125), (0.5625, 0.75), (0.5625, 0.75), (0.5625, 0.8125), (0.53125, 0.8125), (0.53125, 0.75), (0.53125, 0.75), (0.53125, 0.8125), (0.5, 0.8125), (0.5, 0.75), (0.5, 0.75), (0.5, 0.8125), (0.46875, 0.8125), (0.46875, 0.75), (0.46875, 0.75), (0.46875, 0.8125), (0.4375, 0.8125), (0.4375, 0.75), (0.4375, 0.75), (0.4375, 0.8125), (0.40625, 0.8125), (0.40625, 0.75), (0.40625, 0.75), (0.40625, 0.8125), (0.375, 0.8125), (0.375, 0.75), (0.375, 0.75), (0.375, 0.8125), (0.34375, 0.8125), (0.34375, 0.75), (0.34375, 0.75), (0.34375, 0.8125), (0.3125, 0.8125), (0.3125, 0.75), (0.3125, 0.75), (0.3125, 0.8125), (0.28125, 0.8125), (0.28125, 0.75), (0.28125, 0.75), (0.28125, 0.8125), (0.25, 0.8125), (0.25, 0.75), (0.25, 0.75), (0.25, 0.8125), (0.21875, 0.8125), (0.21875, 0.75), (0.21875, 0.75), (0.21875, 0.8125), (0.1875, 0.8125), (0.1875, 0.75), (0.1875, 0.75), (0.1875, 0.8125), (0.15625, 0.8125), (0.15625, 0.75), (0.15625, 0.75), (0.15625, 0.8125), (0.125, 0.8125), (0.125, 0.75), (0.125, 0.75), (0.125, 0.8125), (0.09375, 0.8125), (0.09375, 0.75), (0.09375, 0.75), (0.09375, 0.8125), (0.0625, 0.8125), (0.0625, 0.75), (0.0625, 0.75), (0.0625, 0.8125), (0.03125, 0.8125), (0.03125, 0.75), (0.03125, 0.75), (0.03125, 0.8125), (0, 0.8125), (0, 0.75), (1, 0.8125), (1, 0.875), (0.96875, 0.875), (0.96875, 0.8125), (0.96875, 0.8125), (0.96875, 0.875), (0.9375, 0.875), (0.9375, 0.8125), (0.9375, 0.8125), (0.9375, 0.875), (0.90625, 0.875), (0.90625, 0.8125), (0.90625, 0.8125), (0.90625, 0.875), (0.875, 0.875), (0.875, 0.8125), (0.875, 0.8125), (0.875, 0.875), (0.84375, 0.875), (0.84375, 0.8125), (0.84375, 0.8125), (0.84375, 0.875), (0.8125, 0.875), (0.8125, 0.8125), (0.8125, 0.8125), (0.8125, 0.875), (0.78125, 0.875), (0.78125, 0.8125), (0.78125, 0.8125), (0.78125, 0.875), (0.75, 0.875), (0.75, 0.8125), (0.75, 0.8125), (0.75, 0.875), (0.71875, 0.875), (0.71875, 0.8125), (0.71875, 0.8125), (0.71875, 0.875), (0.6875, 0.875), (0.6875, 0.8125), (0.6875, 0.8125), (0.6875, 0.875), (0.65625, 0.875), (0.65625, 0.8125), (0.65625, 0.8125), (0.65625, 0.875), (0.625, 0.875), (0.625, 0.8125), (0.625, 0.8125), (0.625, 0.875), (0.59375, 0.875), (0.59375, 0.8125), (0.59375, 0.8125), (0.59375, 0.875), (0.5625, 0.875), (0.5625, 0.8125), (0.5625, 0.8125), (0.5625, 0.875), (0.53125, 0.875), (0.53125, 0.8125), (0.53125, 0.8125), (0.53125, 0.875), (0.5, 0.875), (0.5, 0.8125), (0.5, 0.8125), (0.5, 0.875), (0.46875, 0.875), (0.46875, 0.8125), (0.46875, 0.8125), (0.46875, 0.875), (0.4375, 0.875), (0.4375, 0.8125), (0.4375, 0.8125), (0.4375, 0.875), (0.40625, 0.875), (0.40625, 0.8125), (0.40625, 0.8125), (0.40625, 0.875), (0.375, 0.875), (0.375, 0.8125), (0.375, 0.8125), (0.375, 0.875), (0.34375, 0.875), (0.34375, 0.8125), (0.34375, 0.8125), (0.34375, 0.875), (0.3125, 0.875), (0.3125, 0.8125), (0.3125, 0.8125), (0.3125, 0.875), (0.28125, 0.875), (0.28125, 0.8125), (0.28125, 0.8125), (0.28125, 0.875), (0.25, 0.875), (0.25, 0.8125), (0.25, 0.8125), (0.25, 0.875), (0.21875, 0.875), (0.21875, 0.8125), (0.21875, 0.8125), (0.21875, 0.875), (0.1875, 0.875), (0.1875, 0.8125), (0.1875, 0.8125), (0.1875, 0.875), (0.15625, 0.875), (0.15625, 0.8125), (0.15625, 0.8125), (0.15625, 0.875), (0.125, 0.875), (0.125, 0.8125), (0.125, 0.8125), (0.125, 0.875), (0.09375, 0.875), (0.09375, 0.8125), (0.09375, 0.8125), (0.09375, 0.875), (0.0625, 0.875), (0.0625, 0.8125), (0.0625, 0.8125), (0.0625, 0.875), (0.03125, 0.875), (0.03125, 0.8125), (0.03125, 0.8125), (0.03125, 0.875), (0, 0.875), (0, 0.8125), (1, 0.875), (1, 0.9375), (0.96875, 0.9375), (0.96875, 0.875), (0.96875, 0.875), (0.96875, 0.9375), (0.9375, 0.9375), (0.9375, 0.875), (0.9375, 0.875), (0.9375, 0.9375), (0.90625, 0.9375), (0.90625, 0.875), (0.90625, 0.875), (0.90625, 0.9375), (0.875, 0.9375), (0.875, 0.875), (0.875, 0.875), (0.875, 0.9375), (0.84375, 0.9375), (0.84375, 0.875), (0.84375, 0.875), (0.84375, 0.9375), (0.8125, 0.9375), (0.8125, 0.875), (0.8125, 0.875), (0.8125, 0.9375), (0.78125, 0.9375), (0.78125, 0.875), (0.78125, 0.875), (0.78125, 0.9375), (0.75, 0.9375), (0.75, 0.875), (0.75, 0.875), (0.75, 0.9375), (0.71875, 0.9375), (0.71875, 0.875), (0.71875, 0.875), (0.71875, 0.9375), (0.6875, 0.9375), (0.6875, 0.875), (0.6875, 0.875), (0.6875, 0.9375), (0.65625, 0.9375), (0.65625, 0.875), (0.65625, 0.875), (0.65625, 0.9375), (0.625, 0.9375), (0.625, 0.875), (0.625, 0.875), (0.625, 0.9375), (0.59375, 0.9375), (0.59375, 0.875), (0.59375, 0.875), (0.59375, 0.9375), (0.5625, 0.9375), (0.5625, 0.875), (0.5625, 0.875), (0.5625, 0.9375), (0.53125, 0.9375), (0.53125, 0.875), (0.53125, 0.875), (0.53125, 0.9375), (0.5, 0.9375), (0.5, 0.875), (0.5, 0.875), (0.5, 0.9375), (0.46875, 0.9375), (0.46875, 0.875), (0.46875, 0.875), (0.46875, 0.9375), (0.4375, 0.9375), (0.4375, 0.875), (0.4375, 0.875), (0.4375, 0.9375), (0.40625, 0.9375), (0.40625, 0.875), (0.40625, 0.875), (0.40625, 0.9375), (0.375, 0.9375), (0.375, 0.875), (0.375, 0.875), (0.375, 0.9375), (0.34375, 0.9375), (0.34375, 0.875), (0.34375, 0.875), (0.34375, 0.9375), (0.3125, 0.9375), (0.3125, 0.875), (0.3125, 0.875), (0.3125, 0.9375), (0.28125, 0.9375), (0.28125, 0.875), (0.28125, 0.875), (0.28125, 0.9375), (0.25, 0.9375), (0.25, 0.875), (0.25, 0.875), (0.25, 0.9375), (0.21875, 0.9375), (0.21875, 0.875), (0.21875, 0.875), (0.21875, 0.9375), (0.1875, 0.9375), (0.1875, 0.875), (0.1875, 0.875), (0.1875, 0.9375), (0.15625, 0.9375), (0.15625, 0.875), (0.15625, 0.875), (0.15625, 0.9375), (0.125, 0.9375), (0.125, 0.875), (0.125, 0.875), (0.125, 0.9375), (0.09375, 0.9375), (0.09375, 0.875), (0.09375, 0.875), (0.09375, 0.9375), (0.0625, 0.9375), (0.0625, 0.875), (0.0625, 0.875), (0.0625, 0.9375), (0.03125, 0.9375), (0.03125, 0.875), (0.03125, 0.875), (0.03125, 0.9375), (0, 0.9375), (0, 0.875), (0.5, 1), (0.96875, 0.9375), (1, 0.9375), (0.5, 1), (0.9375, 0.9375), (0.96875, 0.9375), (0.5, 1), (0.90625, 0.9375), (0.9375, 0.9375), (0.5, 1), (0.875, 0.9375), (0.90625, 0.9375), (0.5, 1), (0.84375, 0.9375), (0.875, 0.9375), (0.5, 1), (0.8125, 0.9375), (0.84375, 0.9375), (0.5, 1), (0.78125, 0.9375), (0.8125, 0.9375), (0.5, 1), (0.75, 0.9375), (0.78125, 0.9375), (0.5, 1), (0.71875, 0.9375), (0.75, 0.9375), (0.5, 1), (0.6875, 0.9375), (0.71875, 0.9375), (0.5, 1), (0.65625, 0.9375), (0.6875, 0.9375), (0.5, 1), (0.625, 0.9375), (0.65625, 0.9375), (0.5, 1), (0.59375, 0.9375), (0.625, 0.9375), (0.5, 1), (0.5625, 0.9375), (0.59375, 0.9375), (0.5, 1), (0.53125, 0.9375), (0.5625, 0.9375), (0.5, 1), (0.5, 0.9375), (0.53125, 0.9375), (0.5, 1), (0.46875, 0.9375), (0.5, 0.9375), (0.5, 1), (0.4375, 0.9375), (0.46875, 0.9375), (0.5, 1), (0.40625, 0.9375), (0.4375, 0.9375), (0.5, 1), (0.375, 0.9375), (0.40625, 0.9375), (0.5, 1), (0.34375, 0.9375), (0.375, 0.9375), (0.5, 1), (0.3125, 0.9375), (0.34375, 0.9375), (0.5, 1), (0.28125, 0.9375), (0.3125, 0.9375), (0.5, 1), (0.25, 0.9375), (0.28125, 0.9375), (0.5, 1), (0.21875, 0.9375), (0.25, 0.9375), (0.5, 1), (0.1875, 0.9375), (0.21875, 0.9375), (0.5, 1), (0.15625, 0.9375), (0.1875, 0.9375), (0.5, 1), (0.125, 0.9375), (0.15625, 0.9375), (0.5, 1), (0.09375, 0.9375), (0.125, 0.9375), (0.5, 1), (0.0625, 0.9375), (0.09375, 0.9375), (0.5, 1), (0.03125, 0.9375), (0.0625, 0.9375), (0.5, 1), (0, 0.9375), (0.03125, 0.9375)] ( interpolation = "faceVarying" ) uniform token subdivisionScheme = "none" double3 xformOp:rotateXYZ = (0, 0, 0) double3 xformOp:scale = (1, 1, 1) double3 xformOp:translate = (0, 0, 0) uniform token[] xformOpOrder = ["xformOp:translate", "xformOp:rotateXYZ", "xformOp:scale"] } def Scope "Looks" { def Material "Material" { token outputs:mdl:displacement.connect = </World/Looks/Material/Shader.outputs:out> token outputs:mdl:surface.connect = </World/Looks/Material/Shader.outputs:out> token outputs:mdl:volume.connect = </World/Looks/Material/Shader.outputs:out> def Shader "Shader" { uniform token info:implementationSource = "sourceAsset" uniform asset info:mdl:sourceAsset = @./TESTEXPORT.mdl@ uniform token info:mdl:sourceAsset:subIdentifier = "Material" token outputs:out } } } }
omniverse-code/kit/exts/omni.kit.property.material/data/tests/mtl/OmniHair.mdl
/*************************************************************************************************** * Copyright 2020 NVIDIA Corporation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of NVIDIA CORPORATION nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **************************************************************************************************/ // Wrapper for OmniHairBase material mdl 1.7; import ::anno::*; import ::base::*; import ::limits::*; import ::state::*; import ::tex::*; import ::OmniSurface::OmniHairBase::*; import ::OmniSurface::OmniShared::*; import ::OmniSurface::OmniImage::*; export material OmniHair( //Color // float base_color_weight = float(1.0) [[ anno::display_name("Base Color Weight"), anno::in_group("Color"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d base_color_weight_image = texture_2d() [[ anno::display_name("Base Color Weight Image"), anno::in_group("Color") ]], uniform ::OmniSurface::OmniImage::alpha_mode base_color_weight_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Base Color Weight Image Alpha Mode"), anno::in_group("Color") ]], color base_color = color(1.0) [[ anno::display_name("Base Color"), anno::in_group("Color") ]], uniform texture_2d base_color_image = texture_2d() [[ anno::display_name("Base Color Image"), anno::in_group("Color") ]], uniform ::OmniSurface::OmniShared::melanin_concentration_presets melanin_concentration_preset = ::OmniSurface::OmniShared::melanin_concentration_custom [[ anno::display_name("Melanin Presets"), anno::in_group("Color") ]], float melanin_concentration = float(1.0) [[ anno::display_name("Melanin Concentration"), anno::in_group("Color"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d melanin_concentration_image = texture_2d() [[ anno::display_name("Melanin Concentration Image"), anno::in_group("Color") ]], uniform ::OmniSurface::OmniImage::alpha_mode melanin_concentration_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Melanin Concentration Image Alpha Mode"), anno::in_group("Color") ]], float melanin_redness = float(0.5) [[ anno::display_name("Melanin Redness (Pheomelanin)"), anno::in_group("Color"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d melanin_redness_image = texture_2d() [[ anno::display_name("Melanin Redness Image"), anno::in_group("Color") ]], uniform ::OmniSurface::OmniImage::alpha_mode melanin_redness_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Melanin Redness Image Alpha Mode"), anno::in_group("Color") ]], float melanin_concentration_randomize = float(0.0) [[ anno::display_name("Melanin Randomize"), anno::in_group("Color") ]], uniform texture_2d melanin_concentration_randomize_image = texture_2d() [[ anno::display_name("Melanin Randomize Image"), anno::in_group("Color") ]], uniform ::OmniSurface::OmniImage::alpha_mode melanin_concentration_randomize_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Melanin Randomize Image Alpha Mode"), anno::in_group("Color") ]], //Specular // float specular_reflection_roughness = float(0.2) [[ anno::display_name("Roughness"), anno::in_group("Specular"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d specular_reflection_roughness_image = texture_2d() [[ anno::display_name("Roughness Image"), anno::in_group("Specular") ]], uniform ::OmniSurface::OmniImage::alpha_mode specular_reflection_roughness_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Roughness Image Alpha Mode"), anno::in_group("Specular") ]], uniform bool specular_reflection_anisotropic_roughness = false [[ anno::display_name("Azimuthal Anisotropic Roughness"), anno::in_group("Specular") ]], float specular_reflection_azimuthal_roughness = float(0.2) [[ anno::display_name("Azimuthal Roughness"), anno::in_group("Specular"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d specular_reflection_azimuthal_roughness_image = texture_2d() [[ anno::display_name("Azimuthal Roughness Image"), anno::in_group("Specular") ]], uniform ::OmniSurface::OmniImage::alpha_mode specular_reflection_azimuthal_roughness_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Azimuthal Roughness Image Alpha Mode"), anno::in_group("Specular") ]], uniform float specular_reflection_ior = float(1.55) [[ anno::display_name("IOR"), anno::in_group("Specular"), anno::soft_range(0.0f, 5.0f), anno::hard_range(0.0f, limits::FLOAT_MAX) ]], float specular_reflection_shift = float(3.0) [[ anno::display_name("Shift (degree)"), anno::in_group("Specular"), anno::soft_range(0.0f, 20.0f), anno::hard_range(-90.0f, 90.0f) ]], uniform texture_2d specular_reflection_shift_image = texture_2d() [[ anno::display_name("Shift Image"), anno::in_group("Specular") ]], uniform ::OmniSurface::OmniImage::alpha_mode specular_reflection_shift_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Shift Image Alpha Mode"), anno::in_group("Specular") ]], //Diffuse Reflection // float diffuse_reflection_weight = float(0.0) [[ anno::display_name("Weight"), anno::in_group("Diffuse"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d diffuse_reflection_weight_image = texture_2d() [[ anno::display_name("Weight Image"), anno::in_group("Diffuse") ]], uniform ::OmniSurface::OmniImage::alpha_mode diffuse_reflection_weight_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Weight Image Alpha Mode"), anno::in_group("Diffuse") ]], color diffuse_reflection_color = color(1.0) [[ anno::display_name("Color"), anno::in_group("Diffuse") ]], uniform texture_2d diffuse_reflection_color_image = texture_2d() [[ anno::display_name("Color Image"), anno::in_group("Diffuse") ]], //Emission // float emission_weight = float(0.0) [[ anno::display_name("Weight"), anno::in_group("Emission"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d emission_weight_image = texture_2d() [[ anno::display_name("Weight Image"), anno::in_group("Emission") ]], uniform ::OmniSurface::OmniImage::alpha_mode emission_weight_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Weight Image Alpha Mode"), anno::in_group("Emission") ]], uniform ::OmniSurface::OmniShared::emission_mode emission_mode = ::OmniSurface::OmniShared::emission_lx [[ anno::display_name("Emission Mode"), anno::in_group("Emission") ]], float emission_intensity = float(1.0) [[ anno::display_name("Intensity"), anno::in_group("Emission"), anno::soft_range(0.0f, 1000.0f) ]], uniform texture_2d emission_intensity_image = texture_2d() [[ anno::display_name("Intensity Image"), anno::in_group("Emission") ]], uniform ::OmniSurface::OmniImage::alpha_mode emission_intensity_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Intensity Image Alpha Mode"), anno::in_group("Emission") ]], color emission_color = color(1.0) [[ anno::display_name("Color"), anno::in_group("Emission") ]], uniform texture_2d emission_color_image = texture_2d() [[ anno::display_name("Color Image"), anno::in_group("Emission") ]], uniform bool emission_use_temperature = false [[ anno::display_name("Use Temperature"), anno::in_group("Emission") ]], float emission_temperature = float(6500.0) [[ anno::display_name("Temperature (kelvin)"), anno::in_group("Emission"), anno::soft_range(0.0f, 10000.0f) ]], uniform texture_2d emission_temperature_image = texture_2d() [[ anno::display_name("Temperature Image"), anno::in_group("Emission") ]], uniform ::OmniSurface::OmniImage::alpha_mode emission_temperature_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Temperature Image Alpha Mode"), anno::in_group("Emission") ]], //Geometry // uniform bool enable_opacity = false [[ anno::display_name("Enable Opacity"), anno::description("Enables the use of cutout opacity"), anno::in_group("Geometry") ]], float geometry_opacity = float(1.0) [[ anno::display_name("Opacity"), anno::in_group("Geometry"), anno::hard_range(0.0f, 1.0f) ]], uniform texture_2d geometry_opacity_image = texture_2d() [[ anno::display_name("Opacity Image"), anno::in_group("Geometry") ]], uniform ::OmniSurface::OmniImage::alpha_mode geometry_opacity_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Opacity Image Alpha Mode"), anno::in_group("Geometry") ]], uniform float geometry_opacity_threshold = float(0.0) [[ anno::display_name("Opacity Threshold"), anno::description("If > 0, remap opacity values to 1 when >= threshold and to 0 otherwise"), anno::in_group("Geometry"), anno::hard_range(0.0f, 1.0f) ]], uniform float geometry_normal_strength = float(1.0) [[ anno::display_name("Geometry Normal Strength"), anno::in_group("Geometry"), anno::soft_range(0.0f, 1.0f), anno::hard_range(0.0f, limits::FLOAT_MAX) ]], float3 geometry_normal = state::normal() [[ anno::display_name("Geometry Normal"), anno::in_group("Geometry"), anno::usage("normal") ]], uniform texture_2d geometry_normal_image = texture_2d() [[ anno::display_name("Geometry Normal Map Image"), anno::in_group("Geometry") ]], uniform bool geometry_normal_image_flip_r_channel = false [[ anno::display_name("Normal Map Flip R Channel"), anno::in_group("Geometry") ]], uniform bool geometry_normal_image_flip_g_channel = false [[ anno::display_name("Normal Map Flip G Channel"), anno::in_group("Geometry") ]], uniform bool geometry_normal_image_flip_b_channel = false [[ anno::display_name("Normal Map Flip B Channel"), anno::in_group("Geometry") ]], uniform ::OmniSurface::OmniImage::tangent_bitangent_mapping geometry_tangent_bitangent_mapping = ::OmniSurface::OmniImage::red_green [[ anno::display_name("Tangent Bitangent Mapping"), anno::in_group("Geometry") ]], //Displacement float3 geometry_displacement = float3(0.0) [[ anno::display_name("Displacement"), anno::in_group("Geometry") ]], uniform ::OmniSurface::OmniShared::displacement_mode geometry_displacement_mode = ::OmniSurface::OmniShared::displacement_height [[ anno::display_name("Displacement Mode"), anno::in_group("Geometry") ]], uniform texture_2d geometry_displacement_image = texture_2d() [[ anno::display_name("Displacement Image"), anno::in_group("Geometry") ]], uniform ::OmniSurface::OmniImage::alpha_mode geometry_displacement_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Displacement Image Alpha Mode"), anno::in_group("Geometry") ]], float geometry_displacement_scale = float(1.0) [[ anno::display_name("Displacement Scale"), anno::in_group("Geometry"), anno::soft_range(0.0f, 1.0f) ]], uniform texture_2d geometry_displacement_scale_image = texture_2d() [[ anno::display_name("Displacement Scale Image"), anno::in_group("Geometry") ]], uniform ::OmniSurface::OmniImage::alpha_mode geometry_displacement_scale_image_alpha_mode = ::OmniSurface::OmniImage::alpha_default [[ anno::display_name("Displacement Scale Image Alpha Mode"), anno::in_group("Geometry") ]], float geometry_displacement_scalar_zero_value = float(0.0) [[ anno::display_name("Displacement Scalar Zero Value"), anno::in_group("Geometry"), anno::soft_range(0.0f, 1.0f) ]], //UVW // uniform base::texture_coordinate_system uvw_texture_coordinate_system = base::texture_coordinate_uvw [[ anno::display_name("Texture Coordinate"), anno::in_group("UVW Coordinates") ]], uniform int uvw_uv_set = 0 [[ anno::display_name("UV Set"), anno::in_group("UVW Coordinates"), anno::hard_range(0, 4) ]], uniform bool uvw_ignore_missing_textures = false [[ anno::display_name("Ignore Missing Images"), anno::in_group("UVW Coordinates") ]], color uvw_missing_texture_color = color(0.0, 0.0, 0.0) [[ anno::display_name("Missing Image Color"), anno::in_group("UVW Coordinates") ]], uniform bool uvw_use_uv_coords = false [[ anno::display_name("Use UV Coords"), anno::in_group("UVW Coordinates") ]], float2 uvw_uv_coords = float2(0.0) [[ anno::display_name("UV Coords"), anno::in_group("UVW Coordinates") ]], uniform float uvw_s_offset = 0.0f [[ anno::display_name("Offset U"), anno::in_group("UVW Coordinates"), anno::soft_range(-1.0f, 1.0f) ]], uniform float uvw_t_offset = 0.0f [[ anno::display_name("Offset V"), anno::in_group("UVW Coordinates"), anno::soft_range(-1.0f, 1.0f) ]], uniform ::OmniSurface::OmniImage::wrap_mode uvw_s_wrap = ::OmniSurface::OmniImage::wrap_periodic [[ anno::display_name("Wrap U"), anno::in_group("UVW Coordinates") ]], uniform ::OmniSurface::OmniImage::wrap_mode uvw_t_wrap = ::OmniSurface::OmniImage::wrap_periodic [[ anno::display_name("Wrap V"), anno::in_group("UVW Coordinates") ]], uniform float uvw_s_scale = 1.0f [[ anno::display_name("Scale U"), anno::in_group("UVW Coordinates"), anno::soft_range(0.0f, 100.0f) ]], uniform float uvw_t_scale = 1.0f [[ anno::display_name("Scale V"), anno::in_group("UVW Coordinates"), anno::soft_range(0.0f, 100.0f) ]], uniform bool uvw_s_flip = false [[ anno::display_name("Flip U"), anno::in_group("UVW Coordinates") ]], uniform bool uvw_t_flip = false [[ anno::display_name("Flip V"), anno::in_group("UVW Coordinates") ]], uniform bool uvw_swap_st = false [[ anno::display_name("Swap UV"), anno::in_group("UVW Coordinates") ]], //Projection Coordinates (Local / World) uniform ::OmniSurface::OmniImage::projection_mode uvw_projection_mode = ::OmniSurface::OmniImage::projection_cubic [[ anno::display_name("Projection Mode"), anno::in_group("UVW Coordinates") ]], uniform float3 uvw_projection_translate = float3(0.0) [[ anno::display_name("Translate"), anno::description("Translate the projected texture."), anno::in_group("UVW Coordinates") ]], uniform float3 uvw_projection_rotate = float3(0.0) [[ anno::display_name("Rotate"), anno::description("Rotate the projected texture."), anno::in_group("UVW Coordinates") ]], uniform float3 uvw_projection_scale = float3(1.0) [[ anno::display_name("Scale"), anno::description("Scale the projected texture."), anno::in_group("UVW Coordinates") ]] ) [[ anno::display_name("OmniHairBase"), anno::description("A base material for modeling a variety of hairs, furs, and fibers."), anno::author("NVIDIA Corporation"), anno::in_group("OmniHair"), anno::key_words(string[]("generic", "hair", "fur", "fiber")), anno::version(1, 0, 0, "") ]] = let { base::texture_coordinate_info texture_coordinate_info = ::OmniSurface::OmniImage::compute_texture_coordinate_2( uvw_texture_coordinate_system, uvw_uv_set, uvw_s_offset, uvw_t_offset, uvw_s_scale, uvw_t_scale, uvw_s_flip, uvw_t_flip, uvw_swap_st, uvw_projection_mode, uvw_projection_translate, uvw_projection_rotate, uvw_projection_scale); material base = ::OmniSurface::OmniHairBase::OmniHairBase ( //Color // base_color_weight: tex::texture_isvalid(base_color_weight_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( base_color_weight_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), base_color_weight_image_alpha_mode ).mono : base_color_weight, base_color: tex::texture_isvalid(base_color_image) ? ::OmniSurface::OmniImage::texture_lookup_2( base_color_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ).tint : base_color, //Melanin // melanin_concentration_preset: melanin_concentration_preset, melanin_concentration: tex::texture_isvalid(melanin_concentration_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( melanin_concentration_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), melanin_concentration_image_alpha_mode ).mono : melanin_concentration, melanin_redness: tex::texture_isvalid(melanin_redness_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( melanin_redness_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), melanin_redness_image_alpha_mode ).mono : melanin_redness, melanin_concentration_randomize: tex::texture_isvalid(melanin_concentration_randomize_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( melanin_concentration_randomize_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), melanin_concentration_randomize_image_alpha_mode ).mono : melanin_concentration_randomize, //Specular reflection // specular_reflection_roughness: tex::texture_isvalid(specular_reflection_roughness_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( specular_reflection_roughness_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), specular_reflection_roughness_image_alpha_mode ).mono : specular_reflection_roughness, specular_reflection_anisotropic_roughness: specular_reflection_anisotropic_roughness, specular_reflection_azimuthal_roughness: tex::texture_isvalid(specular_reflection_azimuthal_roughness_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( specular_reflection_azimuthal_roughness_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), specular_reflection_azimuthal_roughness_image_alpha_mode ).mono : specular_reflection_azimuthal_roughness, specular_reflection_ior: specular_reflection_ior, specular_reflection_shift: tex::texture_isvalid(specular_reflection_shift_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( specular_reflection_shift_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), specular_reflection_shift_image_alpha_mode ).mono : specular_reflection_shift, //Diffuse Reflection // diffuse_reflection_weight: tex::texture_isvalid(diffuse_reflection_weight_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( diffuse_reflection_weight_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), diffuse_reflection_weight_image_alpha_mode ).mono : diffuse_reflection_weight, diffuse_reflection_color: tex::texture_isvalid(diffuse_reflection_color_image) ? ::OmniSurface::OmniImage::texture_lookup_2( diffuse_reflection_color_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ).tint : diffuse_reflection_color, //Emission // emission_weight: tex::texture_isvalid(emission_weight_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( emission_weight_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), emission_weight_image_alpha_mode ).mono : emission_weight, emission_mode: emission_mode, emission_intensity: tex::texture_isvalid(emission_intensity_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( emission_intensity_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), emission_intensity_image_alpha_mode ).mono : emission_intensity, emission_color: tex::texture_isvalid(emission_color_image) ? ::OmniSurface::OmniImage::texture_lookup_2( emission_color_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ).tint : emission_color, emission_use_temperature: emission_use_temperature, emission_temperature: tex::texture_isvalid(emission_temperature_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( emission_temperature_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), emission_temperature_image_alpha_mode ).mono : emission_temperature, //Geometry // enable_opacity: enable_opacity, geometry_opacity: tex::texture_isvalid(geometry_opacity_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( geometry_opacity_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), geometry_opacity_image_alpha_mode ).mono : geometry_opacity, geometry_opacity_threshold: geometry_opacity_threshold, geometry_normal: tex::texture_isvalid(geometry_normal_image) ? ::OmniSurface::OmniImage::normal_mapping( ::OmniSurface::OmniImage::tangent_space_normal_lookup_2( geometry_normal_image, uvw_ignore_missing_textures, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, uvw_s_flip, uvw_t_flip, geometry_normal_strength, geometry_normal_image_flip_r_channel, geometry_normal_image_flip_g_channel, geometry_normal_image_flip_b_channel, texture_coordinate_info ), geometry_tangent_bitangent_mapping, geometry_normal ): geometry_normal, geometry_displacement: tex::texture_isvalid(geometry_displacement_image) ? ::OmniSurface::OmniShared::displacement_adjustment( (geometry_displacement_mode == ::OmniSurface::OmniShared::displacement_height) ? float3(::OmniSurface::OmniImage::texture_adjustment_2( OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( geometry_displacement_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), geometry_displacement_image_alpha_mode ), 0.0f, //exposure color(0.5), //default_color color(1.0), //color_gain color(0.0), //color_offset 1.0f, //alpha_gain -1.0f * geometry_displacement_scalar_zero_value, //alpha_offset false, //invert 0.0f //blend_factor ).mono) : float3(::OmniSurface::OmniImage::texture_lookup_2( geometry_displacement_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ).tint ), geometry_displacement_mode, tex::texture_isvalid(geometry_displacement_scale_image) ? ::OmniSurface::OmniImage::texture_alpha_channel_remap_2( ::OmniSurface::OmniImage::texture_lookup_2( geometry_displacement_scale_image, uvw_ignore_missing_textures, uvw_missing_texture_color, uvw_use_uv_coords, uvw_uv_coords, uvw_s_wrap, uvw_t_wrap, texture_coordinate_info ), geometry_displacement_scale_image_alpha_mode ).mono : geometry_displacement_scale ): geometry_displacement ); } in material( thin_walled: base.thin_walled, ior: base.ior, surface: base.surface, backface: base.backface, volume: base.volume, geometry: base.geometry, hair: base.hair );
omniverse-code/kit/exts/omni.kit.property.material/data/tests/mtl/OmniHairTest.mdl
/*************************************************************************************************** * Copyright 2020 NVIDIA Corporation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of NVIDIA CORPORATION nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **************************************************************************************************/ mdl 1.7; import ::anno::*; import ::limits::*; import ::state::*; import ::base::*; import ::OmniSurface::OmniShared::*; import ::OmniSurface::OmniImage::*; import OmniHair::*; //Blonde // export material OmniHair(*) = OmniHair::OmniHair( base_color_weight: float(1.0), base_color_weight_image: texture_2d(), base_color_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, base_color: color(1.0), base_color_image: texture_2d(), melanin_concentration_preset: ::OmniSurface::OmniShared::melanin_concentration_custom, melanin_concentration: float(0.1), melanin_concentration_image: texture_2d(), melanin_concentration_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_redness: float(0.5), melanin_redness_image: texture_2d(), melanin_redness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_concentration_randomize: float(0.0), melanin_concentration_randomize_image: texture_2d(), melanin_concentration_randomize_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_roughness: float(0.2), specular_reflection_roughness_image: texture_2d(), specular_reflection_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_anisotropic_roughness: false, specular_reflection_azimuthal_roughness: float(0.2), specular_reflection_azimuthal_roughness_image: texture_2d(), specular_reflection_azimuthal_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_ior: float(1.55), specular_reflection_shift: float(3.0), specular_reflection_shift_image: texture_2d(), specular_reflection_shift_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_weight: float(0.0), diffuse_reflection_weight_image: texture_2d(), diffuse_reflection_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_color: color(1.0), diffuse_reflection_color_image: texture_2d(), emission_weight: float(0.0), emission_weight_image: texture_2d(), emission_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_mode: ::OmniSurface::OmniShared::emission_lx, emission_intensity: float(1.0), emission_intensity_image: texture_2d(), emission_intensity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_color: color(0.944, 0.932, 0.760), emission_color_image: texture_2d(), emission_use_temperature: false, emission_temperature: float(6500.0), emission_temperature_image: texture_2d(), emission_temperature_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, enable_opacity: false, geometry_opacity: float(1.0), geometry_opacity_image: texture_2d(), geometry_opacity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_opacity_threshold: float(0.0), geometry_normal_strength: float(1.0), geometry_normal: state::normal(), geometry_normal_image: texture_2d(), geometry_normal_image_flip_r_channel: false, geometry_normal_image_flip_g_channel: false, geometry_normal_image_flip_b_channel: false, geometry_tangent_bitangent_mapping: ::OmniSurface::OmniImage::red_green, geometry_displacement: float3(0.0), geometry_displacement_mode: ::OmniSurface::OmniShared::displacement_height, geometry_displacement_image: texture_2d(), geometry_displacement_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scale: float(1.0), geometry_displacement_scale_image: texture_2d(), geometry_displacement_scale_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scalar_zero_value: float(0.0), uvw_texture_coordinate_system: base::texture_coordinate_uvw, uvw_uv_set: 0, uvw_ignore_missing_textures: false, uvw_missing_texture_color: color(0.0), uvw_use_uv_coords: false, uvw_uv_coords: float2(0.0), uvw_s_offset: 0.0f, uvw_t_offset: 0.0f, uvw_s_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_t_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_s_scale: 1.0f, uvw_t_scale: 1.0f, uvw_s_flip: false, uvw_t_flip: false, uvw_swap_st: false, uvw_projection_mode: ::OmniSurface::OmniImage::projection_cubic, uvw_projection_translate: float3(0.0), uvw_projection_rotate: float3(0.0), uvw_projection_scale: float3(1.0) );
omniverse-code/kit/exts/omni.kit.property.material/data/tests/mtl/badname.mdl
/****************************************************************************** * Copyright 1986, 2019 NVIDIA ARC GmbH. All rights reserved. * ****************************************************************************** Permission is hereby granted by NVIDIA Corporation ("NVIDIA"), free of charge, to any person obtaining a copy of the sample definition code that uses our Material Definition Language (the "MDL Materials"), to reproduce and distribute the MDL Materials, including without limitation the rights to use, copy, merge, publish, distribute, and sell modified and unmodified copies of the MDL Materials, and to permit persons to whom the MDL Materials is furnished to do so, in all cases solely for use with NVIDIA’s Material Definition Language, subject to the following further conditions: 1. The above copyright notices, this list of conditions, and the disclaimer that follows shall be retained in all copies of one or more of the MDL Materials, including in any software with which the MDL Materials are bundled, redistributed, and/or sold, and included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user, as applicable. 2. The name of NVIDIA shall not be used to promote, endorse or advertise any Modified Version without specific prior written permission, except a) to comply with the notice requirements otherwise contained herein; or b) to acknowledge the contribution(s) of NVIDIA. THE MDL MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE MDL MATERIALS OR FROM OTHER DEALINGS IN THE MDL MATERIALS. */ mdl 1.3; import df::*; import state::*; import math::*; import tex::*; import anno::*; // // ----------------------------- TO REMOVE ----------------------------- // The function has been moved to Ue4Function.mdl // export float4 unpack_normal_map( float4 texture_sample = float4(0.0, 0.0, 1.0, 1.0) ) [[ anno::description("Unpack a normal stored in a normal map"), anno::noinline() ]] { float2 normal_xy = float2(texture_sample.x, texture_sample.y); normal_xy = normal_xy * float2(2.0,2.0) - float2(1.0,1.0); float normal_z = math::sqrt( math::saturate( 1.0 - math::dot( normal_xy, normal_xy ) ) ); return float4( normal_xy.x, normal_xy.y, normal_z, 1.0 ); } // --------------------------------------------------------------------- float3 tangent_space_normal( float3 normal = float3(0.0,0.0,1.0), float3 tangent_u = state::texture_tangent_u(0), float3 tangent_v = state::texture_tangent_v(0) ) [[ anno::description("Interprets the vector in tangent space"), anno::noinline() ]] { return math::normalize( tangent_u * normal.x + tangent_v * normal.y + state::normal() * (normal.z)); } export material Ue4basedMDL( float3 base_color = float3(0.0, 0.0, 0.0), float metallic = 0.0, float roughness = 0.5, float specular = 0.5, float3 normal = float3(0.0,0.0,1.0), float clearcoat_weight = 0.0, float clearcoat_roughness = 0.0, float3 clearcoat_normal = float3(0.0,0.0,1.0), float opacity = 1.0, float3 emissive_color = float3(0.0, 0.0, 0.0) ) = let { color final_base_color = math::saturate(base_color); float final_metallic = math::saturate(metallic); float final_roughness = math::saturate(roughness); float final_specular = math::saturate(specular); color final_emissive_color = math::max(emissive_color, 0.0f); float final_clearcoat_weight = math::saturate(clearcoat_weight); float final_opacity = math::saturate(opacity); float final_clearcoat_roughness = math::saturate(clearcoat_roughness); float3 final_normal = math::normalize(normal); float3 final_clearcoat_normal = math::normalize(clearcoat_normal); // - compute final roughness by squaring the "roughness" parameter float alpha = final_roughness * final_roughness; // reduce the reflectivity at grazing angles to avoid "dark edges" for high roughness due to the layering float grazing_refl = math::max((1.0 - final_roughness), 0.0); // for the dielectric component we layer the glossy component on top of the diffuse one, // the glossy layer has no color tint bsdf dielectric_component = df::custom_curve_layer( weight: final_specular, normal_reflectivity: 0.08, grazing_reflectivity: grazing_refl, layer: df::microfacet_ggx_vcavities_bsdf(roughness_u: alpha), base: df::diffuse_reflection_bsdf(tint: final_base_color) ); // the metallic component doesn't have a diffuse component, it's only glossy // base_color is applied to tint it bsdf metallic_component = df::microfacet_ggx_vcavities_bsdf(tint: final_base_color, roughness_u: alpha); // final BSDF is a linear blend between dielectric and metallic component bsdf dielectric_metal_mix = df::normalized_mix( components: df::bsdf_component[]( df::bsdf_component( component: metallic_component, weight: final_metallic), df::bsdf_component( component: dielectric_component, weight: 1.0-final_metallic) ) ); // clearcoat layer float clearcoat_grazing_refl = math::max((1.0 - final_clearcoat_roughness), 0.0); float clearcoat_alpha = final_clearcoat_roughness * final_clearcoat_roughness; float3 the_normal = tangent_space_normal( normal: final_normal, tangent_u: state::texture_tangent_u(0), tangent_v: state::texture_tangent_v(0) ); float3 the_clearcoat_normal = tangent_space_normal( normal: final_clearcoat_normal, tangent_u: state::texture_tangent_u(0), tangent_v: state::texture_tangent_v(0) ); bsdf clearcoat = df::custom_curve_layer( base: df::weighted_layer( layer: dielectric_metal_mix, weight: 1.0 ), layer: df::microfacet_ggx_vcavities_bsdf( roughness_u: clearcoat_alpha, tint: color(1.0) ), normal_reflectivity: 0.04, grazing_reflectivity: clearcoat_grazing_refl, normal: the_clearcoat_normal, weight: final_clearcoat_weight ); bsdf surface = clearcoat; } in material( surface: material_surface( scattering: surface, emission: material_emission ( emission: df::diffuse_edf (), intensity: final_emissive_color ) ), geometry: material_geometry( normal: the_normal, cutout_opacity: final_opacity ) );
omniverse-code/kit/exts/omni.kit.property.material/data/tests/mtl/multi_hair.mdl
/*************************************************************************************************** * Copyright 2020 NVIDIA Corporation. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of NVIDIA CORPORATION nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. **************************************************************************************************/ mdl 1.7; import ::anno::*; import ::limits::*; import ::state::*; import ::base::*; import ::OmniSurface::OmniShared::*; import ::OmniSurface::OmniImage::*; import OmniHair::*; //Blonde // export material OmniHair_Green(*) = OmniHair::OmniHair( base_color_weight: float(1.0), base_color_weight_image: texture_2d(), base_color_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, base_color: color(1.0), base_color_image: texture_2d(), melanin_concentration_preset: ::OmniSurface::OmniShared::melanin_concentration_custom, melanin_concentration: float(0.1), melanin_concentration_image: texture_2d(), melanin_concentration_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_redness: float(0.5), melanin_redness_image: texture_2d(), melanin_redness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_concentration_randomize: float(0.0), melanin_concentration_randomize_image: texture_2d(), melanin_concentration_randomize_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_roughness: float(0.2), specular_reflection_roughness_image: texture_2d(), specular_reflection_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_anisotropic_roughness: false, specular_reflection_azimuthal_roughness: float(0.2), specular_reflection_azimuthal_roughness_image: texture_2d(), specular_reflection_azimuthal_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_ior: float(1.55), specular_reflection_shift: float(3.0), specular_reflection_shift_image: texture_2d(), specular_reflection_shift_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_weight: float(0.0), diffuse_reflection_weight_image: texture_2d(), diffuse_reflection_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_color: color(1.0), diffuse_reflection_color_image: texture_2d(), emission_weight: float(0.0), emission_weight_image: texture_2d(), emission_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_mode: ::OmniSurface::OmniShared::emission_lx, emission_intensity: float(1.0), emission_intensity_image: texture_2d(), emission_intensity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_color: color(0.944, 0.932, 0.760), emission_color_image: texture_2d(), emission_use_temperature: false, emission_temperature: float(6500.0), emission_temperature_image: texture_2d(), emission_temperature_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, enable_opacity: false, geometry_opacity: float(1.0), geometry_opacity_image: texture_2d(), geometry_opacity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_opacity_threshold: float(0.0), geometry_normal_strength: float(1.0), geometry_normal: state::normal(), geometry_normal_image: texture_2d(), geometry_normal_image_flip_r_channel: false, geometry_normal_image_flip_g_channel: false, geometry_normal_image_flip_b_channel: false, geometry_tangent_bitangent_mapping: ::OmniSurface::OmniImage::red_green, geometry_displacement: float3(0.0), geometry_displacement_mode: ::OmniSurface::OmniShared::displacement_height, geometry_displacement_image: texture_2d(), geometry_displacement_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scale: float(1.0), geometry_displacement_scale_image: texture_2d(), geometry_displacement_scale_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scalar_zero_value: float(0.0), uvw_texture_coordinate_system: base::texture_coordinate_uvw, uvw_uv_set: 0, uvw_ignore_missing_textures: false, uvw_missing_texture_color: color(0.0), uvw_use_uv_coords: false, uvw_uv_coords: float2(0.0), uvw_s_offset: 0.0f, uvw_t_offset: 0.0f, uvw_s_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_t_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_s_scale: 1.0f, uvw_t_scale: 1.0f, uvw_s_flip: false, uvw_t_flip: false, uvw_swap_st: false, uvw_projection_mode: ::OmniSurface::OmniImage::projection_cubic, uvw_projection_translate: float3(0.0), uvw_projection_rotate: float3(0.0), uvw_projection_scale: float3(1.0) ); //Brown // export material OmniHair_Brown(*) = OmniHair::OmniHair( base_color_weight: float(1.0), base_color_weight_image: texture_2d(), base_color_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, base_color: color(1.0), base_color_image: texture_2d(), melanin_concentration_preset: ::OmniSurface::OmniShared::melanin_concentration_custom, melanin_concentration: float(0.45), melanin_concentration_image: texture_2d(), melanin_concentration_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_redness: float(0.5), melanin_redness_image: texture_2d(), melanin_redness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, melanin_concentration_randomize: float(0.0), melanin_concentration_randomize_image: texture_2d(), melanin_concentration_randomize_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_roughness: float(0.2), specular_reflection_roughness_image: texture_2d(), specular_reflection_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_anisotropic_roughness: false, specular_reflection_azimuthal_roughness: float(0.2), specular_reflection_azimuthal_roughness_image: texture_2d(), specular_reflection_azimuthal_roughness_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, specular_reflection_ior: float(1.55), specular_reflection_shift: float(3.0), specular_reflection_shift_image: texture_2d(), specular_reflection_shift_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_weight: float(0.0), diffuse_reflection_weight_image: texture_2d(), diffuse_reflection_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, diffuse_reflection_color: color(1.0), diffuse_reflection_color_image: texture_2d(), emission_weight: float(0.0), emission_weight_image: texture_2d(), emission_weight_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_mode: ::OmniSurface::OmniShared::emission_lx, emission_intensity: float(1.0), emission_intensity_image: texture_2d(), emission_intensity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, emission_color: color(0.944, 0.932, 0.760), emission_color_image: texture_2d(), emission_use_temperature: false, emission_temperature: float(6500.0), emission_temperature_image: texture_2d(), emission_temperature_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, enable_opacity: false, geometry_opacity: float(1.0), geometry_opacity_image: texture_2d(), geometry_opacity_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_opacity_threshold: float(0.0), geometry_normal_strength: float(1.0), geometry_normal: state::normal(), geometry_normal_image: texture_2d(), geometry_normal_image_flip_r_channel: false, geometry_normal_image_flip_g_channel: false, geometry_normal_image_flip_b_channel: false, geometry_tangent_bitangent_mapping: ::OmniSurface::OmniImage::red_green, geometry_displacement: float3(0.0), geometry_displacement_mode: ::OmniSurface::OmniShared::displacement_height, geometry_displacement_image: texture_2d(), geometry_displacement_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scale: float(1.0), geometry_displacement_scale_image: texture_2d(), geometry_displacement_scale_image_alpha_mode: ::OmniSurface::OmniImage::alpha_default, geometry_displacement_scalar_zero_value: float(0.0), uvw_texture_coordinate_system: base::texture_coordinate_uvw, uvw_uv_set: 0, uvw_ignore_missing_textures: false, uvw_missing_texture_color: color(0.0), uvw_use_uv_coords: false, uvw_uv_coords: float2(0.0), uvw_s_offset: 0.0f, uvw_t_offset: 0.0f, uvw_s_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_t_wrap: ::OmniSurface::OmniImage::wrap_periodic, uvw_s_scale: 1.0f, uvw_t_scale: 1.0f, uvw_s_flip: false, uvw_t_flip: false, uvw_swap_st: false, uvw_projection_mode: ::OmniSurface::OmniImage::projection_cubic, uvw_projection_translate: float3(0.0), uvw_projection_rotate: float3(0.0), uvw_projection_scale: float3(1.0) );
omniverse-code/kit/exts/omni.activity.usd_resolver/PACKAGE-LICENSES/omni.activity.usd_resolver-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited.
omniverse-code/kit/exts/omni.activity.usd_resolver/config/extension.toml
[package] title = "Omni Activity plugin for UsdResolver" category = "Telemetry" version = "1.0.1" description = "The activity and the progress processor gets pumped every frame" authors = ["NVIDIA"] keywords = ["activity"] changelog = "docs/CHANGELOG.md" [[python.module]] name = "omni.activity.usd_resolver" [[native.plugin]] path = "bin/*.plugin" [dependencies] "omni.activity.core" = {} "omni.usd" = {} [[test]] args = [ "--/app/window/dpiScaleOverride=1.0", "--/app/window/scaleToMonitor=false", "--no-window" ] stdoutFailPatterns.exclude = [ "*failed to load native plugin*", ]
omniverse-code/kit/exts/omni.activity.usd_resolver/omni/activity/usd_resolver/__init__.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## # Required to be able to instantiate the object types import omni.core
omniverse-code/kit/exts/omni.activity.usd_resolver/omni/activity/usd_resolver/tests/test_skip.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.activity.core as act import omni.kit.app import omni.kit.test class TestSkip(omni.kit.test.AsyncTestCase): async def test_general(self): """ Temporarly placeholder for tests """ self.assertTrue(True)
omniverse-code/kit/exts/omni.activity.usd_resolver/omni/activity/usd_resolver/tests/__init__.py
## Copyright (c) 2022, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## from .test_skip import TestSkip
omniverse-code/kit/exts/omni.kit.widget.fast_search/PACKAGE-LICENSES/omni.kit.widget.fast_search-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited. "Icon made by Pixel perfect from www.flaticon.com" "Icon made by prettycons from www.flaticon.com"
omniverse-code/kit/exts/omni.kit.widget.fast_search/config/extension.toml
[package] version = "0.3.0" authors = ["NVIDIA"] changelog = "docs/CHANGELOG" readme = "docs/README.md" keywords = ["search", "fast"] title = "Fast Search" description = "Fast search bar" preview_image = "data/preview.png" [ui] name = "Fast Search" [dependencies] "omni.appwindow" = {} "omni.ui" = {} [[python.module]] name = "omni.kit.widget.fast_search.python" [[test]] waiver = "extension is being deprecated"
omniverse-code/kit/exts/omni.kit.widget.fast_search/omni/kit/widget/fast_search/python/delegate.py
""" * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ import omni.ui as ui import os ICONS_DIR = os.path.join(os.path.dirname(os.path.dirname(__file__)), "icons") DICT_ICONS = { "forbidden": os.path.join(ICONS_DIR, "forbidden.svg"), "forbidden_black": os.path.join(ICONS_DIR, "forbidden_black.svg"), "star": os.path.join(ICONS_DIR, "star.svg"), "star_black": os.path.join(ICONS_DIR, "star_black.svg"), "plus": os.path.join(ICONS_DIR, "{style}", "Plus.svg"), "minus": os.path.join(ICONS_DIR, "{style}", "Minus.svg"), } class FastSearchDelegate(ui.AbstractItemDelegate): """Delegate of the Mapper Batcher""" def __init__(self): super(FastSearchDelegate, self).__init__() self._highlighting_enabled = None # Text that is highlighted in flat mode self._highlighting_text = None self.show_column_visibility = True self._style = None self.init_editor_style() def init_editor_style(self): import carb.settings self._style = carb.settings.get_settings().get_as_string("/persistent/app/window/uiStyle") or "NvidiaDark" def build_branch(self, model, item, column_id, level, expanded): """Create a branch widget that opens or closes subtree""" if column_id == 0: with ui.HStack(width=16 * (level + 2), height=0): ui.Spacer() if model.can_item_have_children(item): # Draw the +/- icon image_name = "minus" if expanded else "plus" ui.Image( DICT_ICONS[image_name].format(style=self._style), width=10, height=10, style_type_name_override="TreeView.Item", ) ui.Spacer(width=4) def build_widget(self, model, item, column_id, level, expanded): """Create a widget per item""" # Disable the item if it's an Instance Proxy because Kit can't interact with such object and crashes. enabled = True if column_id == 0: name = item.name.get_value_as_string() star_path = self.get_fav_icon(item) forbidden_path = self.get_block_icon(item) with ui.HStack(height=20): label = ui.Label(name) label.set_mouse_released_fn(lambda x, y, b, m, i=item: self._on_item_clicked(i, b)) ui.Spacer() fav_icon = ui.Image(star_path, width=15, height=15) fav_icon.set_mouse_released_fn(lambda x, y, b, m, i=item, f=fav_icon: self._on_fav_clicked(i, f, b)) ui.Spacer(width=10) blocklist_icon = ui.Image(forbidden_path, width=15, height=15) blocklist_icon.set_mouse_released_fn(lambda x, y, b, m, i=item, f=blocklist_icon: self._on_block_clicked(i, f, b)) ui.Spacer(width=10) @staticmethod def get_fav_icon(item): """Get favorite icon path""" return DICT_ICONS["star_black"] if not item.favorite else DICT_ICONS["star"] @staticmethod def get_block_icon(item): """Get blocked icon path""" return DICT_ICONS["forbidden_black"] if not item.blocklist else DICT_ICONS["forbidden"] def _on_item_clicked(self, item, button): if button != 0: return item.item_mouse_released() def _on_fav_clicked(self, item, image_widget, button): """Called when favorite icon is clicked""" if button != 0: return item.favorite = not item.favorite image_widget.source_url = self.get_fav_icon(item) def _on_block_clicked(self, item, image_widget, button): """Called when blocked icon is clicked""" if button != 0: return item.blocklist = not item.blocklist image_widget.source_url = self.get_block_icon(item) def build_header(self, column_id): """Build the header""" style_type_name = "TreeView.Header" with ui.HStack(): ui.Label("Node name", style_type_name_override=style_type_name)
omniverse-code/kit/exts/omni.kit.widget.fast_search/omni/kit/widget/fast_search/python/__init__.py
""" * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ from .widget import FastSearchWidget
omniverse-code/kit/exts/omni.kit.widget.fast_search/omni/kit/widget/fast_search/python/model.py
""" * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ import omni.ui as ui class SimpleItem(ui.AbstractItem): """Single item of the model""" def __init__(self, model, name, fav=False, block=False): super(SimpleItem, self).__init__() self._model = model self.name = name self._favorite = fav self._blocklist = block def item_mouse_released(self): self._model.item_mouse_released(self) @property def favorite(self): return self._favorite @favorite.setter def favorite(self, value: bool): """Add favorite""" if value: self._model.prepend_item("favorites", self, refresh=False) else: if self in self._model.favorites: self._model.favorites.remove(self) self._favorite = value @property def blocklist(self): return self._blocklist @blocklist.setter def blocklist(self, value: bool): """Add blocklist""" if value: self._model.prepend_item("blocklist", self, refresh=False) if self in self._model.favorites: self._model.favorites.remove(self) if self in self._model.previous_items: self._model.previous_items.remove(self) else: if self in self._model.blocklist: self._model.blocklist.remove(self) if self.favorite and self not in self._model.favorites: self._model.prepend_item("favorites", self, refresh=False) if self not in self._model.previous_items: self._model.prepend_item("previous_items", self, refresh=False) self._blocklist = value class SimpleModel(ui.AbstractItemModel): """Simple list model that can be used in a lot of different way""" class _Event(set): """ A list of callable objects. Calling an instance of this will cause a call to each item in the list in ascending order by index. """ def __call__(self, *args, **kwargs): """Called when the instance is “called” as a function""" # Call all the saved functions for f in self: f(*args, **kwargs) def __repr__(self): """ Called by the repr() built-in function to compute the “official” string representation of an object. """ return f"Event({set.__repr__(self)})" class _EventSubscription: """ Event subscription. _Event has callback while this object exists. """ def __init__(self, event, fn): """ Save the function, the event, and add the function to the event. """ self._fn = fn self._event = event event.add(self._fn) def __del__(self): """Called by GC.""" self._event.remove(self._fn) def __init__(self, column_count: int): super(SimpleModel, self).__init__() self.items = [] self.latest = [] self.favorites = [] self.blocklist = [] self.previous_items = [] self._column_count = column_count self.__on_item_mouse_released = self._Event() def item_mouse_released(self, item): """Call the event object that has the list of functions""" self.__on_item_mouse_released(item) def subscribe_item_mouse_released(self, fn): """ Return the object that will automatically unsubscribe when destroyed. """ return self._EventSubscription(self.__on_item_mouse_released, fn) def get_item_children(self, item: SimpleItem) -> list: """Returns all the children when the widget asks it.""" if item is not None: # Since we are doing a flat list, we return the children of root only. # If it's not root we return. return [] return self.items def set_items(self, mode_attr: str, items: list, refresh: bool = True): """Set items on the list""" setattr(self, mode_attr, items) if refresh: self.refresh() def append_item(self, mode_attr: str, item, refresh: bool = True): """Append items on the list""" current_items = getattr(self, mode_attr) indexes = [] for i, current_item in enumerate(current_items): if item.name.get_value_as_string() == current_item.name.get_value_as_string(): indexes.append(i) indexes.reverse() for index in indexes: current_items.pop(index) current_items.append(item) self.set_items(mode_attr, current_items, refresh=refresh) def prepend_item(self, mode_attr: str, item, refresh: bool = True): """Prepend items on the list""" current_items = getattr(self, mode_attr) indexes = [] for i, current_item in enumerate(current_items): if item.name.get_value_as_string() == current_item.name.get_value_as_string(): indexes.append(i) indexes.reverse() for index in indexes: current_items.pop(index) current_items.insert(0, item) self.set_items(mode_attr, current_items, refresh=refresh) def refresh(self): """Reset the model""" self._item_changed(None) def get_item_value_model_count(self, item) -> int: """The number of columns""" return self._column_count def get_item_value_model(self, item: SimpleItem, column_id: int): """ Return value model. It's the object that tracks the specific value. In our case we use ui.SimpleStringModel. """ return item.name
omniverse-code/kit/exts/omni.kit.widget.fast_search/omni/kit/widget/fast_search/python/widget.py
""" * Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ import carb import omni.ui as ui from . import delegate, model class FastSearchWidget(object): def __init__(self, items_dict): self._items_dict = items_dict self._is_visible = False self._current_selection = [] self._menus_global_selection = [] self._tab_first_item_set = False self._current_global_selection_index = 0 self._style = {"Menu.ItemSelected": {"color": 0xFFC8C8C8}, "Menu.ItemUnseleted": {"color": 0xFF646464}} self._default_attr = { "_model": None, "_delegate": None, "_window": None, "_search_field": None, "_tree_view": None, "_menu_all": None, "_menu_latest": None, "_menu_favorites": None, "_menu_blocklist": None, "_subscription_item_mouse_released": None, } for attr, value in self._default_attr.items(): setattr(self, attr, value) def create_widget(self): """Create the widget UI""" self._model = model.SimpleModel(column_count=1) self._delegate = delegate.FastSearchDelegate() self._window = ui.Window( "Graph search", width=400, height=400, flags=ui.WINDOW_FLAGS_POPUP | ui.WINDOW_FLAGS_NO_TITLE_BAR | ui.WINDOW_FLAGS_MENU_BAR, ) menu_bar = self._window.menu_bar menu_bar.set_style(self._style) with menu_bar: self._menu_all = ui.MenuItem( "All", triggered_fn=self.show_all, style_type_name_override="Menu.ItemSelected" ) self._menu_latest = ui.MenuItem( "Latest", triggered_fn=self.show_only_latest, style_type_name_override="Menu.ItemUnseleted" ) self._menu_favorites = ui.MenuItem( "Favorites", triggered_fn=self.show_only_favorites, style_type_name_override="Menu.ItemUnseleted" ) self._menu_blocklist = ui.MenuItem( "Blocklist", triggered_fn=self.show_only_blocklist, style_type_name_override="Menu.ItemUnseleted" ) self._menus_global_selection.extend( [self._menu_all, self._menu_latest, self._menu_favorites, self._menu_blocklist] ) self._window.frame.set_key_pressed_fn(self.__on_key_pressed) with self._window.frame: with ui.VStack(): with ui.Frame(height=20): with ui.VStack(): self._search_field = ui.StringField() self._search_field.model.add_value_changed_fn(self._filter) ui.Spacer(height=5) with ui.ScrollingFrame( horizontal_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_ALWAYS_OFF, vertical_scrollbar_policy=ui.ScrollBarPolicy.SCROLLBAR_ALWAYS_ON, style_type_name_override="TreeView", ): self._tree_view = ui.TreeView( self._model, delegate=self._delegate, root_visible=False, header_visible=False, style={"TreeView.Item": {"margin": 4}}, ) self._tree_view.set_selection_changed_fn(self._on_widget_attr_selection_changed) self._model.set_items( "items", [model.SimpleItem(self._model, ui.SimpleStringModel(attr)) for attr in self._items_dict.keys()] ) self._model.previous_items = self._model.items self._subscription_item_mouse_released = self._model.subscribe_item_mouse_released( self.item_mouse_released ) self._select_first_item() def show_all(self): print("show all") def show_only_latest(self): print("show latest") def show_only_favorites(self): print("show favorites") def show_only_blocklist(self): print("show blocklist") def _select_first_item(self): """Select first item of the list""" if self._model.items: self._tree_view.selection = [self._model.items[0]] def _select_down_item(self): """Select the item down""" if self._tree_view.selection: current_index = self._model.items.index(self._tree_view.selection[-1]) index = current_index + 1 if index >= len(self._model.items) - 1: index = len(self._model.items) - 1 self._tree_view.selection = [self._model.items[index]] def _select_up_item(self): """Select the item up""" if self._tree_view.selection: current_index = self._model.items.index(self._tree_view.selection[-1]) index = current_index - 1 if index <= 0: index = 0 self._tree_view.selection = [self._model.items[index]] def _filter(self, str_model): """Filter from the windows""" # set the global mode (all, latest...) if self._current_global_selection_index == 0: self._model.items = self._model.previous_items self._model.refresh() elif self._current_global_selection_index == 1: self._model.items = self._model.latest self._model.refresh() elif self._current_global_selection_index == 2: self._model.items = self._model.favorites self._model.refresh() elif self._current_global_selection_index == 3: self._model.items = self._model.blocklist self._model.refresh() value = str_model.get_value_as_string() if not value.strip(): self._select_first_item() return items = [] for item in self._model.items: current_attr = item.name.get_value_as_string() if value.lower() not in current_attr.lower(): continue items.append(item) if not items: self._model.items = [] self._model.refresh() return self._model.items = items self._model.refresh() self._select_first_item() def _on_widget_attr_selection_changed(self, selection): """Fill self.current_attrs_selection when the selection change into the attribute chooser""" self._current_selection = selection def set_window_visible(self, visible): """Set the widget visible""" self._window.visible = visible if visible: self._search_field.model.set_value("") self._search_field.focus_keyboard() self._select_first_item() def item_mouse_released(self, item): self.execute_item(item) def __key_enter_pressed(self): """Called when key enter is pressed. Add the item in the latest list""" if self.is_visible: if self._current_selection: self.execute_item(self._current_selection[0]) def execute_item(self, item): selection_str = item.name.get_value_as_string() self._items_dict[selection_str]() current_latest = [x.name.get_value_as_string() for x in self._model.latest] if not current_latest or current_latest[-1] != selection_str: if selection_str in current_latest: current_latest.remove(selection_str) current_latest.insert(0, selection_str) self._model.set_items( "latest", [model.SimpleItem(self._model, ui.SimpleStringModel(attr)) for attr in current_latest] ) self.set_window_visible(False) def __key_escape_pressed(self): if self.is_visible: self.set_window_visible(False) self._tab_first_item_set = False def __key_tab_pressed(self): """Roll modes""" if self.is_visible and self._model.items and not self._tab_first_item_set: selection_str = self._current_selection[0].name.get_value_as_string() self._search_field.model.set_value(selection_str) self._tab_first_item_set = True elif self.is_visible and self._model.items and self._tab_first_item_set: self.__key_enter_pressed() self._tab_first_item_set = False def __key_ctrl_tab_pressed(self): """Roll modes""" if self.is_visible: if self._current_global_selection_index == len(self._menus_global_selection) - 1: self._current_global_selection_index = 0 else: self._current_global_selection_index += 1 for i, menu in enumerate(self._menus_global_selection): if i == self._current_global_selection_index: menu.style_type_name_override = "Menu.ItemSelected" else: menu.style_type_name_override = "Menu.ItemUnseleted" self._filter(self._search_field.model) def __key_select_down_pressed(self): if self.is_visible: self._select_down_item() def __key_select_up_pressed(self): if self.is_visible: self._select_up_item() def __on_key_pressed(self, key_index, key_flags, key_down): key_mod = key_flags & ~ui.Widget.FLAG_WANT_CAPTURE_KEYBOARD if key_index == int(carb.input.KeyboardInput.ESCAPE) and key_mod == 0 and key_down: self.__key_escape_pressed() if key_index == int(carb.input.KeyboardInput.DOWN) and key_mod == 0 and key_down: self.__key_select_down_pressed() if key_index == int(carb.input.KeyboardInput.UP) and key_mod == 0 and key_down: self.__key_select_up_pressed() if key_index == int(carb.input.KeyboardInput.ENTER) and key_mod == 0 and key_down: self.__key_enter_pressed() if key_index == int(carb.input.KeyboardInput.TAB) and key_mod == 0 and key_down: self.__key_tab_pressed() if key_index == int(carb.input.KeyboardInput.TAB) and key_mod == 2 and key_down: self.__key_ctrl_tab_pressed() if key_index == int(carb.input.KeyboardInput.BACKSPACE) and key_mod == 0 and key_down: self._tab_first_item_set = False @property def is_visible(self): return self._window.visible def destroy(self): """Delete the UI""" for attr, value in self._default_attr.items(): m_attr = getattr(self, attr) del m_attr setattr(self, attr, value)
omniverse-code/kit/exts/omni.kit.widget.fast_search/docs/README.md
# Fast search Fast search is a widget that let you found an item from a list quickly. You can set an item as: - favorite - blocklist You can see items from a: - main list - list of latest items chosen - favorite items list - blocked items list ## Usage First Tab: auto complete Second Tab: create what was wrote Ctrl + tab = role on different lists ## API You just have to give a dictionary to Fast Search with: - key: name of the item - value: callable function to be executed when the item is chosen Fast Search can be used anywhere. ### Example ```python from omni.kit.widget.fast_search.python import FastSearchWidget _fast_search_widget = FastSearchWidget( { registered_node_type: lambda: print(registered_node_type) for registered_node_type in omnigraph.get_registered_nodes() } ) _fast_search_widget.create_widget() _fast_search_widget.set_window_visible(False) ```
omniverse-code/kit/exts/omni.kit.widget.fast_search/docs/LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited. "Icon made by Pixel perfect from www.flaticon.com" "Icon made by prettycons from www.flaticon.com"
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/common.py
import omni.ext import asyncio import omni.kit.app import carb import sys import logging logger = logging.getLogger(__name__) def setup_logging(): printInfoLog = carb.settings.get_settings().get("/exts/omni.kit.ui_test/printInfoLog") if not printInfoLog: return # Always log info to stdout to debug tests. Since we tend to reload modules avoid adding more than once. logger = logging.getLogger("omni.kit.ui_test") if len(logger.handlers) == 0: stdout_hdlr = logging.StreamHandler(sys.stdout) stdout_hdlr.setLevel(logging.INFO) stdout_hdlr.setFormatter(logging.Formatter("[%(name)s] [%(levelname)s] %(message)s", "%H:%M:%S")) logger.addHandler(stdout_hdlr) class InitExt(omni.ext.IExt): def on_startup(self): setup_logging() async def wait_n_updates_internal(update_count=2): for _ in range(update_count): await omni.kit.app.get_app().next_update_async() async def wait_n_updates(update_count=2): """Wait N updates (frames).""" logger.debug(f"wait {update_count} updates") await wait_n_updates_internal(update_count) async def human_delay(human_delay_speed: int = 2): """Imitate human delay/slowness. In practice that function just waits couple of frames, but semantically it is different from other wait function. It is used when we want to wait because it would look like normal person interaction. E.g. instead of moving mouse and clicking with speed of light wait a bit. This is also a place where delay can be increased with a setting to debug UI tests. """ logger.debug("human delay") await wait_n_updates_internal(human_delay_speed) # Optional extra delay human_delay = carb.settings.get_settings().get("/exts/omni.kit.ui_test/humanDelay") if human_delay: await asyncio.sleep(human_delay)
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/vec2.py
from __future__ import annotations class Vec2: """Generic 2D Vector Constructed from other `Vec2`, tuple of 2 floats or just 2 floats. Common vector operation supported: .. code-block:: python v0 = Vec2(1, 2) v1 = Vec2((1, 2)) v2 = Vec2(v1) print(v0 + v1) # (2, 4) print(v2 * 3) # (3, 6) print(v2 / 4) # (0.25, 0.5) """ def __init__(self, *args): if len(args) == 0: self.x, self.y = 0, 0 elif len(args) == 1: v = args[0] if isinstance(v, Vec2): self.x, self.y = v.x, v.y else: self.x, self.y = v[0], v[1] else: self.x, self.y = args[0], args[1] def __str__(self) -> str: return f"({self.x}, {self.y})" def __repr__(self) -> str: return f"Vec2 ({self.x}, {self.y})" def __sub__(self, other) -> Vec2: return Vec2(self.x - other.x, self.y - other.y) def __add__(self, other) -> Vec2: return Vec2(self.x + other.x, self.y + other.y) def __mul__(self, scalar) -> Vec2: return Vec2(self.x * scalar, self.y * scalar) def __rmul__(self, scalar) -> Vec2: return self.__mul__(scalar) def __neg__(self) -> Vec2: return Vec2(-self.x, -self.y) def __truediv__(self, scalar) -> Vec2: return Vec2(self.x / scalar, self.y / scalar) def __mod__(self, scalar) -> Vec2: return Vec2(self.x % scalar, self.y % scalar) def to_tuple(self): return (self.x, self.y) def __eq__(self, other): if other == None: return False return self.x == other.x and self.y == other.y def __ne__(self, other): if other == None: return True return not (self.x == other.x and self.y == other.y) def __lt__(self, other): return self.x < other.x and self.y < other.y def __le__(self, other): return self.x <= other.x and self.y <= other.y def __gt__(self, other): return self.x > other.x and self.y > other.y def __ge__(self, other): return self.x >= other.x and self.y >= other.y
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/query.py
from __future__ import annotations import logging from typing import List import carb from omni import ui from omni.ui_query import OmniUIQuery from carb.input import KeyboardInput from .input import emulate_mouse_move_and_click, emulate_char_press, emulate_keyboard_press, emulate_keyboard, emulate_mouse_drag_and_drop from .common import wait_n_updates_internal from .vec2 import Vec2 logger = logging.getLogger(__name__) class WindowStub(): """stub window class for use with WidgetRef & """ def undock(_): pass def focus(_): pass window_stub = WindowStub() class WidgetRef: """Reference to `omni.ui.Widget` and a path it was found with.""" def __init__(self, widget: ui.Widget, path: str, window: ui.Window = None): self._widget = widget self._path = path self._window = window if window else ui.Workspace.get_window(path.split("//")[0]) @property def widget(self) -> ui.Widget: return self._widget @property def model(self): return self._widget.model @property def window(self) -> ui.Window: return self._window @property def path(self) -> str: """Path this widget was found with.""" return self._path @property def realpath(self) -> str: """Actual unique path to this widget from the window.""" return OmniUIQuery.get_widget_path(self.window, self.widget) def __str__(self) -> str: return f"WidgetRef({self.widget}, {self.path})" @property def position(self) -> Vec2: """Screen position of widget's top left corner.""" return Vec2(self._widget.screen_position_x, self._widget.screen_position_y) @property def size(self) -> Vec2: """Computed size of the widget.""" return Vec2(self._widget.computed_content_width, self._widget.computed_content_height) @property def center(self) -> Vec2: """Center of the widget.""" return self.position + (self.size / 2) def offset(self, *kwargs) -> Vec2: if len(kwargs) == 2: return self.position + Vec2(kwargs[0], kwargs[1]) if len(kwargs) == 1 and isinstance(kwargs[0], Vec2): return self.position + kwargs[0] return None async def _wait(self, update_count=2): await wait_n_updates_internal(update_count) async def focus(self): """Focus on a window this widget belongs to.""" self.window.focus() await self._wait() async def undock(self): """Undock a window this widget belongs to.""" self.window.undock() await self._wait() async def bring_to_front(self): """Bring window this widget belongs to on top. Currently this is implemented as undock() + focus().""" await self.undock() await self.focus() async def click(self, pos: Vec2 = None, right_click=False, double=False, human_delay_speed: int = 2): """Emulate mouse click on the widget.""" logger.info(f"click on {str(self)} (right_click: {right_click}, double: {double})") await self.bring_to_front() if not pos: pos = self.center await emulate_mouse_move_and_click( pos, right_click=right_click, double=double, human_delay_speed=human_delay_speed ) async def right_click(self, pos=None, human_delay_speed: int = 2): await self.click(pos=pos, right_click=True, human_delay_speed=human_delay_speed) async def double_click(self, pos=None, human_delay_speed: int = 2): await self.click(pos, double=True, human_delay_speed=human_delay_speed) async def input(self, text: str, end_key = KeyboardInput.ENTER, human_delay_speed: int = 2): """Emulate keyboard input of characters (text) into the widget. It is a helper function for the following sequence: 1. Double click on the widget 2. Input characters 3. Press enter """ if type(self.widget) == ui.FloatSlider or type(self.widget) == ui.FloatDrag or type(self.widget) == ui.IntSlider: from carb.input import MouseEventType, KeyboardEventType await emulate_keyboard(KeyboardEventType.KEY_PRESS, KeyboardInput.UNKNOWN, KeyboardInput.LEFT_CONTROL) await wait_n_updates_internal() await self.click(human_delay_speed=human_delay_speed) await emulate_keyboard(KeyboardEventType.KEY_RELEASE, KeyboardInput.UNKNOWN, KeyboardInput.LEFT_CONTROL) await wait_n_updates_internal() elif type(self.widget) == ui.IntDrag: await wait_n_updates_internal(20) await self.double_click(human_delay_speed=human_delay_speed) else: await self.double_click(human_delay_speed=human_delay_speed) await wait_n_updates_internal(human_delay_speed) await emulate_char_press(text) await emulate_keyboard_press(end_key) async def drag_and_drop(self, drop_target: Vec2, human_delay_speed: int = 4): """Drag/drop for widget.centre to `drop_target`""" await emulate_mouse_drag_and_drop(self.center, drop_target, human_delay_speed=human_delay_speed) def find(self, path: str) -> WidgetRef: """Find omni.ui Widget or Window by search query starting from this widget. .. code-block:: python stage_window = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") label = stage_window.find("**/Label[*].text=='hello'") await label.right_click() Returns: Found Widget or Window wrapped into `WidgetRef` object. """ return _find(path, self) def find_all(self, path: str) -> List[WidgetRef]: """Find all omni.ui Widget or Window by search query starting from this widget. .. code-block:: python stage_window = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") labels = stage_window.find_all("**/Label[*]") for label in labels: await label.right_click() Returns: List of found Widget or Window wrapped into `WidgetRef` objects. """ return _find_all(path, self) class WindowRef(WidgetRef): """Reference to `omni.ui.WindowHandle`""" def __init__(self, widget: ui.WindowHandle, path: str): super().__init__(widget, path, window=widget) @property def position(self) -> Vec2: return Vec2(self._widget.position_x, self._widget.position_y) @property def size(self) -> Vec2: return Vec2(self._widget.width, self._widget.height) def _find_all(path: str, root_widget: WidgetRef = None) -> List[WidgetRef]: # Special case for just window (can be supported in omni.ui.query better) if "/" not in path and not root_widget: window = ui.Workspace.get_window(path) if not window: carb.log_warn(f"Can't find window at path: {path}") return None return [WindowRef(window, path)] root_widgets = [root_widget.widget] if root_widget else [] widgets = OmniUIQuery.find_widgets(path, root_widgets=root_widgets) # Build list of Window and Widget references: res = [] for widget in widgets: fullpath = path window = None if root_widget: sep = "//" if isinstance(root_widget.widget, ui.WindowHandle) else "/" fullpath = f"{root_widget.path}{sep}{path}" window = root_widget.window if isinstance(widget, ui.WindowHandle): res.append(WindowRef(widget, fullpath, window=window)) else: res.append(WidgetRef(widget, fullpath, window=window)) return res def _find(path: str, root_widget: WidgetRef = None) -> WidgetRef: widgets = _find_all(path, root_widget) if not widgets or len(widgets) == 0: carb.log_warn(f"Can't find any widgets at path: {path}") return None MAX_OUTPUT = 10 if len(widgets) > 1: carb.log_warn(f"Found {len(widgets)} widgets at path: {path} instead of one.") for i in range(len(widgets)): carb.log_warn( "[{0}] {1} name: '{2}', realpath: '{3}'".format( i, widgets[i], widgets[i].widget.name, widgets[i].realpath ) ) if i > MAX_OUTPUT: carb.log_warn("...") break return None return widgets[0] class MenuRef(WidgetRef): """Reference to `omni.ui.Menu`""" def __init__(self, widget: ui.Menu, path: str): super().__init__(widget, path, window=window_stub) @staticmethod async def menu_click(path, human_delay_speed: int = 8, show: bool=True): menu_widget = get_menubar() for menu_name in path.split("/"): menu_widget = menu_widget.find_menu(menu_name) if isinstance(menu_widget.widget, ui.Menu): if menu_widget.widget.shown != show: await menu_widget.click() await wait_n_updates_internal(human_delay_speed) if menu_widget.widget.shown != show: carb.log_warn(f"ui.Menu item failed to {'show' if show else 'hide'}") else: await menu_widget.click() await wait_n_updates_internal(human_delay_speed) await wait_n_updates_internal(human_delay_speed) @property def center(self) -> Vec2: # Menu/MenuItem doesn't have width/height if isinstance(self._widget, ui.Menu): return self.position + Vec2(10, 5) * ui.Workspace.get_dpi_scale() return self.position + Vec2(25, 5) * ui.Workspace.get_dpi_scale() def find_menu(self, path: str, ignore_case: bool=False, contains_path: bool=False) -> MenuRef: for widget in self.find_all("**/"): if isinstance(widget.widget, ui.Menu) or isinstance(widget.widget, ui.MenuItem): menu_path = widget.widget.text.encode('ascii', 'ignore').decode().strip() if menu_path == path or \ (ignore_case and menu_path.lower() == path.lower()) or \ (contains_path and path in menu_path) or \ (ignore_case and contains_path and path.lower() in menu_path.lower() ): return MenuRef(widget=widget.widget, path=widget.path) return None def find(path: str) -> WidgetRef: """Find omni.ui Widget or Window by search query. `omni.ui_query` is used under the hood. Returned object can be used to get actual found item or/and do UI test operations on it. .. code-block:: python stage_window = ui_test.find("Stage//Frame/**/ScrollingFrame/TreeView[*].visible==True") await stage_window.right_click() viewport = ui_test.find("Viewport") center = viewport.center print(center) Returns: Found Widget or Window wrapped into `WidgetRef` object. """ return _find(path) def find_all(path: str) -> List[WidgetRef]: """Find all omni.ui Widget or Window by search query. .. code-block:: python buttons = ui_test.find_all("Stage//Frame/**/Button[*]") for button in buttons: await button.click() Returns: List of found Widget or Window wrapped into `WidgetRef` objects. """ return _find_all(path) def get_menubar() -> MenuRef: from omni.kit.mainwindow import get_main_window window = get_main_window() return MenuRef(widget=window._ui_main_window.main_menu_bar, path="MainWindow//Frame/MenuBar") async def menu_click(path, human_delay_speed: int = 32, show: bool=True) -> None: await MenuRef.menu_click(path, human_delay_speed=human_delay_speed, show=show)
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/__init__.py
from .common import human_delay, wait_n_updates, InitExt from .vec2 import Vec2 from .input import ( emulate_mouse_click, emulate_mouse_move, emulate_mouse_move_and_click, emulate_mouse_drag_and_drop, emulate_mouse_scroll, emulate_keyboard_press, emulate_char_press, emulate_key_combo, KeyDownScope, ) from .query import WidgetRef, WindowRef, find, find_all, get_menubar, menu_click from .menu import select_context_menu, get_context_menu
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/menu.py
from __future__ import annotations import re import logging from omni import ui from .input import emulate_mouse_move, emulate_mouse_click from .common import human_delay, wait_n_updates_internal from .vec2 import Vec2 logger = logging.getLogger(__name__) def _find_menu_item(query, menu_root): menu_items = ui.Inspector.get_children(menu_root) for menu_item in menu_items: if isinstance(menu_item, ui.MenuItem) or isinstance(menu_item, ui.Menu): name = re.sub(r"[^\x00-\x7F]+", " ", menu_item.text).lstrip() if query == name: return menu_item return None def _find_context_menu_item(query, menu_root, find_fn=_find_menu_item): tokens = re.split(r'(?<!/)/(?!/)', query) child = menu_root for i in range(0, len(tokens)): token = tokens[i].replace("//", "/") child = find_fn(token, child) if not child: break return child async def select_context_menu( menu_path: str, menu_root: ui.Widget = None, offset=Vec2(100, 10), human_delay_speed: int = 4, find_fn=_find_menu_item ): """Emulate selection of context menu item with mouse. Supports nested menus separated by `/`: .. code-block:: python await ui_test.select_context_menu("Option/Select/All") This function waits for current menu for some time first. Unless `menu_root` was passed explicitly. When there are nested menu mouse moves to each of them and makes human delay for it to open. Then is emulates mouse click on final menu item. """ logger.info(f"select_context_menu: {menu_path} (offset: {offset})") MAX_WAIT = 100 # Find active menu for _ in range(MAX_WAIT): menu_root = menu_root or ui.Menu.get_current() if menu_root: break await wait_n_updates_internal(1) if not menu_root: raise Exception("Can't find context menu, wait time exceeded.") for _ in range(MAX_WAIT): if menu_root.shown: break await wait_n_updates_internal(1) if not menu_root.shown: raise Exception("Context menu is not visible, wait time exceeded.") sub_items = re.split(r'(?<!/)/(?!/)', menu_path) sub_menu_item = "" for item in sub_items: sub_menu_item = f"{sub_menu_item}/{item}" if sub_menu_item else f"{item}" menu_item = _find_context_menu_item(sub_menu_item, menu_root, find_fn) if not menu_item: raise Exception(f"Can't find menu item with path: '{menu_path}'. sub_menu_item: '{sub_menu_item}'") await emulate_mouse_move(Vec2(menu_item.screen_position_x, menu_item.screen_position_y) + offset) await human_delay(human_delay_speed) await emulate_mouse_click() await human_delay(human_delay_speed) async def get_context_menu(menu_root: ui.Widget = None, get_all: bool=False): logger.info(f"get_context_menu: {menu_root}") MAX_WAIT = 100 # Find active menu for _ in range(MAX_WAIT): menu_root = menu_root or ui.Menu.get_current() if menu_root: break await wait_n_updates_internal(1) if not menu_root: raise Exception("Can't find context menu, wait time exceeded.") for _ in range(MAX_WAIT): if menu_root.shown: break await wait_n_updates_internal(1) if not menu_root.shown: raise Exception("Context menu is not visible, wait time exceeded.") menu_dict = {} def list_menu(menu_root, menu_dict): for menu_item in ui.Inspector.get_children(menu_root): if not get_all and (not menu_item.enabled or not menu_item.visible): continue if isinstance(menu_item, ui.MenuItem) or isinstance(menu_item, ui.Menu) or (isinstance(menu_item, ui.Separator) and get_all): name = re.sub(r"[^\x00-\x7F]+", " ", menu_item.text).lstrip() if isinstance(menu_item, ui.Menu): if not name in menu_dict: menu_dict[name] = {} list_menu(menu_item, menu_dict[name]) elif menu_item.has_triggered_fn(): if not "_" in menu_dict: menu_dict["_"] = [] menu_dict["_"].append(name) elif get_all: menu_dict["_"].append(name) list_menu(menu_root, menu_dict) return menu_dict
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/input.py
import carb import carb.input import omni.kit.app import omni.ui as ui import carb.windowing import omni.appwindow from carb.input import MouseEventType, KeyboardEventType, KeyboardInput import logging from functools import lru_cache from itertools import chain from .vec2 import Vec2 from .common import human_delay, wait_n_updates_internal logger = logging.getLogger(__name__) @lru_cache() def _get_windowing() -> carb.windowing.IWindowing: return carb.windowing.acquire_windowing_interface() @lru_cache() def _get_input_provider() -> carb.input.InputProvider: return carb.input.acquire_input_provider() async def emulate_mouse(event_type: MouseEventType, pos: Vec2 = Vec2()): app_window = omni.appwindow.get_default_app_window() mouse = app_window.get_mouse() window_width = ui.Workspace.get_main_window_width() window_height = ui.Workspace.get_main_window_height() pos = pos * ui.Workspace.get_dpi_scale() _get_input_provider().buffer_mouse_event( mouse, event_type, (pos.x / window_width, pos.y / window_height), 0, pos.to_tuple() ) if event_type == MouseEventType.MOVE: _get_windowing().set_cursor_position(app_window.get_window(), (int(pos.x), int(pos.y))) async def emulate_mouse_click(right_click=False, double=False): """Emulate Mouse single or double click.""" for _ in range(2 if double else 1): await emulate_mouse(MouseEventType.RIGHT_BUTTON_DOWN if right_click else MouseEventType.LEFT_BUTTON_DOWN) await wait_n_updates_internal() await emulate_mouse(MouseEventType.RIGHT_BUTTON_UP if right_click else MouseEventType.LEFT_BUTTON_UP) await wait_n_updates_internal() async def emulate_mouse_move(pos: Vec2, human_delay_speed: int = 2): """Emulate Mouse move into position.""" logger.info(f"emulate_mouse_move to: {pos}") await emulate_mouse(MouseEventType.MOVE, pos) await human_delay(human_delay_speed) async def emulate_mouse_move_and_click(pos: Vec2, right_click=False, double=False, human_delay_speed: int = 2): """Emulate Mouse move into position and click.""" logger.info(f"emulate_mouse_move_and_click pos: {pos} (right_click: {right_click}, double: {double})") await emulate_mouse(MouseEventType.MOVE, pos) await emulate_mouse_click(right_click=right_click, double=double) await human_delay(human_delay_speed) async def emulate_mouse_slow_move(start_pos, end_pos, num_steps=8, human_delay_speed: int = 4): """Emulate Mouse slow move. Mouse is moved in steps between start and end with the human delay between each step.""" step = (end_pos - start_pos) / num_steps for i in range(0, num_steps + 1): await emulate_mouse(MouseEventType.MOVE, start_pos + step * i) await human_delay(human_delay_speed) async def emulate_mouse_drag_and_drop(start_pos, end_pos, right_click=False, human_delay_speed: int = 4): """Emulate Mouse Drag & Drop. Click at start position and slowly move to end position.""" logger.info(f"emulate_mouse_drag_and_drop pos: {start_pos} -> {end_pos} (right_click: {right_click})") await emulate_mouse(MouseEventType.MOVE, start_pos) await emulate_mouse(MouseEventType.RIGHT_BUTTON_DOWN if right_click else MouseEventType.LEFT_BUTTON_DOWN) await human_delay(human_delay_speed) await emulate_mouse_slow_move(start_pos, end_pos, human_delay_speed=human_delay_speed) await human_delay(human_delay_speed) await emulate_mouse(MouseEventType.RIGHT_BUTTON_UP if right_click else MouseEventType.LEFT_BUTTON_UP) await human_delay(human_delay_speed) async def emulate_mouse_scroll(delta: Vec2, human_delay_speed: int = 2): """Emulate Mouse scroll by delta.""" logger.info(f"emulate_mouse_scroll: {delta}") await emulate_mouse(MouseEventType.SCROLL, delta) await human_delay(human_delay_speed) async def emulate_keyboard(event_type: KeyboardEventType, key: KeyboardInput, modifier: carb.input.KeyboardInput = 0): logger.info(f"emulate_keyboard event_type: {event_type}, key: {key} modifier:{modifier}") keyboard = omni.appwindow.get_default_app_window().get_keyboard() _get_input_provider().buffer_keyboard_key_event(keyboard, event_type, key, modifier) MODIFIERS_TO_KEY = { carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL: KeyboardInput.LEFT_CONTROL, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT: KeyboardInput.LEFT_SHIFT, carb.input.KEYBOARD_MODIFIER_FLAG_ALT: KeyboardInput.LEFT_ALT, } async def emulate_keyboard_press( key: KeyboardInput, modifier: carb.input.KeyboardInput = 0, human_delay_speed: int = 2 ): """Emulate Keyboard key press. Down and up.""" # Figure out which modifier keys need to be pressed mods = [] for k in MODIFIERS_TO_KEY.keys(): if modifier & k: mods.append(k) modifier = 0 for k in mods: modifier = modifier | k # modifier is added for the press await emulate_keyboard(KeyboardEventType.KEY_PRESS, MODIFIERS_TO_KEY[k], modifier) await human_delay(human_delay_speed) await emulate_keyboard(KeyboardEventType.KEY_PRESS, key, modifier) await human_delay(human_delay_speed) await emulate_keyboard(KeyboardEventType.KEY_RELEASE, key, modifier) await human_delay(human_delay_speed) # Back off the modifiers for k in reversed(mods): modifier = modifier & ~k # modifier is removed for the release await emulate_keyboard(KeyboardEventType.KEY_RELEASE, MODIFIERS_TO_KEY[k], modifier) await human_delay(human_delay_speed) MODIFIERS_MAP = { "CTRL": (KeyboardInput.LEFT_CONTROL, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), "CONTROL": (KeyboardInput.LEFT_CONTROL, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), "SHIFT": (KeyboardInput.LEFT_SHIFT, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT), "ALT": (KeyboardInput.LEFT_ALT, carb.input.KEYBOARD_MODIFIER_FLAG_ALT), } async def emulate_key_combo(combo: str, human_delay_speed: int = 2): """Emulate Keyboard key combination. Parse string of keys separated by '+' sign and treat as a key combo to emulate. Examples: "CTRL+ENTER", "SHIFT+ALT+Y", "Z" """ mods = [] keys = [] modifiers = 0 key_map = KeyboardInput.__members__ # pybind11 way to get enum as dict (name -> value) for key in combo.upper().split("+"): if key in MODIFIERS_MAP: mods.append(MODIFIERS_MAP[key]) continue if key not in key_map: carb.log_error(f"Can't parse key: '{key}' in combo: '{combo}'") return keys.append(key_map[key]) # press modifier keys first for k in mods: modifiers = modifiers | k[1] # modifier is added for the press await emulate_keyboard(KeyboardEventType.KEY_PRESS, k[0], modifiers) await human_delay(human_delay_speed) # press non-modifier keys for k in keys: await emulate_keyboard(KeyboardEventType.KEY_PRESS, k, modifiers) await human_delay(human_delay_speed) # release non-modifier keys and modifier keys in reverse order for k in reversed(keys): await emulate_keyboard(KeyboardEventType.KEY_RELEASE, k, modifiers) await human_delay(human_delay_speed) for k in reversed(mods): modifiers = modifiers & ~k[1] # modifier is removed for the release await emulate_keyboard(KeyboardEventType.KEY_RELEASE, k[0], modifiers) await human_delay(human_delay_speed) async def emulate_char_press(chars: str, delay_every_n_symbols: int = 20, human_delay_speed: int = 2): """Emulate Keyboard char input. Type N chars immediately and do a delay, then continue.""" keyboard = omni.appwindow.get_default_app_window().get_keyboard() for i, char in enumerate(chars): _get_input_provider().buffer_keyboard_char_event(keyboard, char, 0) if (i + 1) % delay_every_n_symbols == 0: await human_delay(human_delay_speed) # Key is down when enter the scope and released when exit # Usage: # async with KeyDownScope(carb.input.KeyboardInput.LEFT_CONTROL): # await ui_test.emulate_mouse_drag_and_drop(Vec2(50, 50), Vec2(350, 350)) class KeyDownScope: def __init__( self, key: carb.input.KeyboardInput, modifier: carb.input.KeyboardInput = 0, human_delay_speed: int = 2 ): self._key = key self._modifier = modifier self._human_delay_speed = human_delay_speed async def __aenter__(self): await emulate_keyboard(carb.input.KeyboardEventType.KEY_PRESS, self._key, self._modifier) await human_delay(self._human_delay_speed) async def __aexit__(self, exc_type, exc, tb): await emulate_keyboard(carb.input.KeyboardEventType.KEY_RELEASE, self._key, self._modifier) if self._modifier: await emulate_keyboard(carb.input.KeyboardEventType.KEY_RELEASE, self._modifier) await human_delay(self._human_delay_speed)
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/tests/test_ui_test.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import unittest import omni.kit.app from omni.kit.test import AsyncTestCase import omni.ui as ui import omni.kit.ui_test as ui_test import carb.input import omni.appwindow from carb.input import KeyboardInput, KeyboardEventType from contextlib import asynccontextmanager @asynccontextmanager async def capture_keyboard(): input = carb.input.acquire_input_interface() keyboard = omni.appwindow.get_default_app_window().get_keyboard() events = [] def on_input(e): events.append((e.input, e.type, e.modifiers)) sub = input.subscribe_to_keyboard_events(keyboard, on_input) try: yield events finally: input.unsubscribe_to_keyboard_events(keyboard, sub) @asynccontextmanager async def capture_mouse(): input = carb.input.acquire_input_interface() mouse = omni.appwindow.get_default_app_window().get_mouse() events = [] def on_input(e): events.append((e.input, e.type)) sub = input.subscribe_to_mouse_events(mouse, on_input) try: yield events finally: input.unsubscribe_to_mouse_events(mouse, sub) class TestUITest(AsyncTestCase): async def setUp(self): self._clicks = 0 self._window = ui.Window("Cool Window") with self._window.frame: # the frame can only have 1 widget under it with ui.HStack(): with ui.VStack(): ui.Label("Test2") with ui.VStack(width=150): with ui.HStack(height=30): ui.Label("Test1") ui.StringField() def on_click(*_): self._clicks += 1 ui.Button("TestButton", clicked_fn=on_click) await ui_test.wait_n_updates(2) async def tearDown(self): self._window = None async def test_find(self): # Click a button button = ui_test.find("Cool Window//Frame/**/Button[*]") self.assertEqual(button.realpath, "Cool Window//Frame/HStack[0]/VStack[1]/HStack[0]/Button[0]") await button.click() self.assertEqual(self._clicks, 1) # Move mouse away, click and then click button again, that should be +1 click: await ui_test.emulate_mouse_move(ui_test.Vec2(0, 0)) await ui_test.emulate_mouse_click() await ui_test.find("Cool Window//Frame/**/Button[*]").click() self.assertEqual(self._clicks, 2) async def test_nested_find(self): # Multiple nested finds h_stack = ui_test.find("Cool Window//Frame/HStack[0]") self.assertEqual(h_stack.realpath, "Cool Window//Frame/HStack[0]") await h_stack.find("**/Button[0]").click() self.assertEqual(self._clicks, 1) window = ui_test.find("Cool Window") h_stack = window.find("HStack[0]") self.assertEqual(h_stack.realpath, "Cool Window//Frame/HStack[0]") await h_stack.find("**/Button[0]").click() self.assertEqual(self._clicks, 2) async def test_find_all(self): labels = ui_test.find_all("Cool Window//Frame/**/Label[*]") self.assertSetEqual({s.widget.text for s in labels}, {"Test1", "Test2"}) h_stack = ui_test.find("Cool Window//Frame/HStack[0]") labels = h_stack.find_all("**/Label[*]") self.assertSetEqual({s.widget.text for s in labels}, {"Test1", "Test2"}) class TestInput(AsyncTestCase): async def test_emulate_keyboard(self): async with capture_keyboard() as events: await ui_test.emulate_keyboard_press(carb.input.KeyboardInput.X, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL) self.assertListEqual( events, [ (KeyboardInput.LEFT_CONTROL, KeyboardEventType.KEY_PRESS, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.X, KeyboardEventType.KEY_PRESS, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.X, KeyboardEventType.KEY_RELEASE, carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.LEFT_CONTROL, KeyboardEventType.KEY_RELEASE, 0), ], ) async def test_emulate_key_combo(self): async with capture_keyboard() as events: await ui_test.emulate_key_combo("SHIFT+ctrl+w") self.assertListEqual( events, [ (KeyboardInput.LEFT_SHIFT, KeyboardEventType.KEY_PRESS, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT), (KeyboardInput.LEFT_CONTROL, KeyboardEventType.KEY_PRESS, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT | carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.W, KeyboardEventType.KEY_PRESS, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT | carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.W, KeyboardEventType.KEY_RELEASE, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT | carb.input.KEYBOARD_MODIFIER_FLAG_CONTROL), (KeyboardInput.LEFT_CONTROL, KeyboardEventType.KEY_RELEASE, carb.input.KEYBOARD_MODIFIER_FLAG_SHIFT), (KeyboardInput.LEFT_SHIFT, KeyboardEventType.KEY_RELEASE, 0), ], ) events.clear() await ui_test.emulate_key_combo("Y") self.assertListEqual( events, [(KeyboardInput.Y, KeyboardEventType.KEY_PRESS, 0), (KeyboardInput.Y, KeyboardEventType.KEY_RELEASE, 0)], ) @unittest.skip("Subscribe to mouse in carbonite doesn't seem to work") async def test_emulate_mouse_scroll(self): async with capture_mouse() as events: await ui_test.emulate_mouse_scroll(ui_test.Vec2(5.5, 6.5)) print(events) self.assertListEqual( events, [] # TODO )
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/tests/__init__.py
from .test_ui_test import * from .test_ui_test_doc_snippets import *
omniverse-code/kit/exts/omni.kit.ui_test/omni/kit/ui_test/tests/test_ui_test_doc_snippets.py
## Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. ## ## NVIDIA CORPORATION and its licensors retain all intellectual property ## and proprietary rights in and to this software, related documentation ## and any modifications thereto. Any use, reproduction, disclosure or ## distribution of this software and related documentation without an express ## license agreement from NVIDIA CORPORATION is strictly prohibited. ## import omni.kit.test import builtins import omni.kit.app from omni.kit.test.async_unittest import AsyncTestCase import omni.ui as ui import omni.kit.ui_test as ui_test class TestUITestDocSnippet(AsyncTestCase): async def test_doc_snippet(self): clicks = 0 def on_click(*_): nonlocal clicks clicks += 1 printed_text = "" def print(*args, **kwargs): nonlocal printed_text printed_text += str(args[0]) + "\n" return builtins.print(*args, **kwargs) # begin-doc-1 # Demo: import omni.kit.ui_test as ui_test import omni.ui as ui # Build some UI window = ui.Window("Nice Window") with window.frame: # the frame can only have 1 widget under it with ui.HStack(): ui.Label("Test1") with ui.VStack(width=150): ui.Label("Test2") ui.Button("TestButton", clicked_fn=on_click) # Let UI build await ui_test.wait_n_updates(2) # Find a button button = ui_test.find("Nice Window//Frame/**/Button[*]") # Real / Unique path: print(button.realpath) # Nice Window//Frame/HStack[0]/VStack[0]/Button[0] # button is a reference, actual omni.ui.Widget can be accessed: print(type(button.widget)) # <class 'omni.ui._ui.Button'> # Click on button await button.click() # Find can be nested same_button = ui_test.find("Nice Window").find("**/Button[*]") # Find multiple: labels = ui_test.find_all("Nice Window//Frame/**/Label[*]") print(labels[0].widget.text) # Test 1 print(labels[1].widget.text) # Test 2 # end-doc-1 # Verify snippet operations: self.assertEqual( printed_text, """Nice Window//Frame/HStack[0]/VStack[0]/Button[0] <class 'omni.ui._ui.Button'> Test1 Test2 """, ) self.assertEqual(button.widget, same_button.widget) self.assertEqual(clicks, 1) self.assertEqual(len(labels), 2)
omniverse-code/kit/exts/omni.kit.ui_test/docs/index.rst
omni.kit.ui_test ########################### UI Testing Helper functions .. toctree:: :maxdepth: 1 CHANGELOG.md Usage Example: ================ .. literalinclude:: ../python/omni/kit/ui_test/tests/test_ui_test_doc_snippets.py :language: python :start-after: begin-doc-1 :end-before: end-doc-1 :dedent: 8 API: ================ .. automodule:: omni.kit.ui_test :platform: Windows-x86_64, Linux-x86_64, Linux-aarch64 :members: :undoc-members: :imported-members:
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/extension.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["CollaborationColumnsWidgetExtension"] import omni.ext from .delegates import * from omni.kit.widget.stage.stage_column_delegate_registry import StageColumnDelegateRegistry class CollaborationColumnsWidgetExtension(omni.ext.IExt): """The entry point for Stage Window""" def on_startup(self): # Register column delegates self._live_column_sub = StageColumnDelegateRegistry().register_column_delegate( "Live", LiveColumnDelegate ) self._reload_column_sub = StageColumnDelegateRegistry().register_column_delegate( "Reload", ReloadColumnDelegate ) self._participants_column_sub = StageColumnDelegateRegistry().register_column_delegate( "Participants", ParticipantsColumnDelegate ) def on_shutdown(self): self._live_column_sub = None self._reload_column_sub = None self._participants_column_sub = None
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/__init__.py
""" * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ from .extension import *
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/icons.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["Icons"] from .singleton import Singleton from pathlib import Path from typing import Union import omni.kit.app EXTENSION_FOLDER_PATH = Path( omni.kit.app.get_app().get_extension_manager().get_extension_path_by_module(__name__) ) @Singleton class Icons: """A singleton that scans the icon folder and returns the icon depending on the type""" def __init__(self): # Read all the svg files in the directory self.__icons = {icon.stem: str(icon) for icon in EXTENSION_FOLDER_PATH.joinpath("icons").glob("*.svg")} def get(self, prim_type: str, default: Union[str, Path] = None) -> str: """Checks the icon cache and returns the icon if exists""" found = self.__icons.get(prim_type) if not found and default: found = self._icons.get(default) if found: return found return ""
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/singleton.py
# Copyright (c) 2018-2020, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # def Singleton(class_): """A singleton decorator""" instances = {} def getinstance(*args, **kwargs): if class_ not in instances: instances[class_] = class_(*args, **kwargs) return instances[class_] return getinstance
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/models/reload_model.py
""" * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ __all__ = ["ReloadModel"] import omni.ui as ui from omni.kit.widget.live_session_management.utils import reload_outdated_layers class ReloadModel(ui.AbstractValueModel): def __init__(self, stage_item): super().__init__() self._stage_item = stage_item def destroy(self): self._stage_item = None def get_value_as_bool(self) -> bool: """Reimplemented get bool""" return self._stage_item.is_outdated def set_value(self, value: bool): """Reimplemented set bool""" prim = self._stage_item.prim if not prim: return prim_path = prim.GetPath() if prim_path: reload_outdated_layers(self._stage_item.payrefs, self._stage_item.usd_context)
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/models/__init__.py
""" * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ from .live_model import * from .reload_model import *
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/models/live_model.py
""" * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ __all__ = ["LiveModel"] import omni.ui as ui import omni.kit.usd.layers as layers import omni.kit.notification_manager as nm class LiveModel(ui.AbstractValueModel): def __init__(self, stage_item): super().__init__() self._stage_item = stage_item def destroy(self): self._stage_item = None def get_value_as_bool(self) -> bool: """Reimplemented get bool""" return self._stage_item.in_session def set_value(self, value: bool): """Reimplemented set bool""" live_syncing = layers.get_live_syncing(self._stage_item.usd_context) if self._stage_item.in_session: live_syncing.stop_live_session(prim_path=self._stage_item.path) elif self._stage_item.payrefs: if len(self._stage_item.payrefs) > 1: nm.post_notification( f"Cannot join default session for prim {self._stage_item.path} as it" " includes multiple references or payloads. Please join from Property" " Window instead." ) else: payref = self._stage_item.payrefs[0] default_session = live_syncing.find_live_session_by_name(payref, "Default") if not default_session: default_session = live_syncing.create_live_session("Default", payref) if default_session: live_syncing.join_live_session(default_session, self._stage_item.path)
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/tests/__init__.py
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/delegates/participants_column_delegate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["ParticipantsColumnDelegate"] from omni.kit.widget.stage.abstract_stage_column_delegate import AbstractStageColumnDelegate, StageColumnItem from omni.kit.widget.stage import StageItem from pxr import UsdGeom from ..icons import Icons from typing import List import omni.ui as ui import omni.kit.widget.live_session_management as lsm class ParticipantsColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the Live column""" def __init__(self): super().__init__() self.WIDGET_STYLE = { "TreeView.Header::participants": {"image_url": Icons().get("participants"), "color": 0xFF888888}, } self.__user_list = {} def destroy(self): for user_list in self.__user_list.values(): user_list.destroy() self.__user_list = {} @property def initial_width(self): """The width of the column""" return ui.Pixel(64) def build_header(self, **kwargs): """Build the header""" with ui.HStack(style=self.WIDGET_STYLE): ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="participants", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() async def build_widget(self, item: StageColumnItem, **kwargs): """Build the participants widget""" stage_item = kwargs.get("stage_item", None) if not stage_item: return user_list = self.__user_list.pop(stage_item, None) if user_list: user_list.destroy() prim = stage_item.prim if not prim: return payrefs = stage_item.payrefs if not prim.IsA(UsdGeom.Camera) and not payrefs: return with ui.HStack(): ui.HStack(width=4) with ui.HStack(): ui.Spacer() if payrefs: user_list = lsm.LiveSessionUserList( stage_item.usd_context, payrefs[0], show_myself=False, maximum_users=2, prim_path=stage_item.path ) else: user_list = lsm.LiveSessionCameraFollowerList( stage_item.usd_context, stage_item.path, maximum_users=2, show_my_following_users=True ) self.__user_list[stage_item] = user_list ui.Spacer() ui.HStack(width=4) def on_stage_items_destroyed(self, items: List[StageItem]): if not items: return for item in items: user_list = self.__user_list.pop(item, None) if user_list: user_list.destroy() @property def order(self): return -105 @property def sortable(self): return False @property def minimum_width(self): return ui.Pixel(40)
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/delegates/__init__.py
""" * Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. * * NVIDIA CORPORATION and its licensors retain all intellectual property * and proprietary rights in and to this software, related documentation * and any modifications thereto. Any use, reproduction, disclosure or * distribution of this software and related documentation without an express * license agreement from NVIDIA CORPORATION is strictly prohibited. """ from .live_column_delegate import * from .reload_column_delegate import * from .participants_column_delegate import *
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/delegates/reload_column_delegate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["ReloadColumnDelegate"] from omni.kit.widget.stage.abstract_stage_column_delegate import AbstractStageColumnDelegate, StageColumnItem from omni.kit.widget.stage import StageItem from typing import List from ..models.reload_model import ReloadModel from ..icons import Icons from functools import partial from omni.ui import color as cl from enum import Enum import weakref import omni.ui as ui import omni.kit.app import omni.kit.usd.layers as layers import carb class ReloadColumnSortPolicy(Enum): DEFAULT = 0 OUTDATE_TO_LATEST = 1 LATEST_TO_OUTDATE = 2 class ReloadColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the Auto Reload column""" def __init__(self): super().__init__() self.__reload_layout = None self.__stage_item_models = {} ITEM_DARK = 0x7723211F ICON_DARK = 0x338A8777 RELOAD = cl("#eb9d00") RELOAD_H = cl("#ffaa00") AUTO_RELOAD = cl("#34C7FF") AUTO_RELOAD_H = cl("#82dcff") self.WIDGET_STYLE = { "Button.Image::reload": {"image_url": Icons().get("reload"), "color": ICON_DARK}, "Button.Image::reload:checked": {"color": RELOAD_H}, "Button.Image::reload:disabled": {"color": 0x608A8777}, "Button.Image::reload:selected": {"color": ITEM_DARK}, "Button.Image::reload:checked:hovered": {"color": 0xFFFFFFFF}, "Button.Image::auto_reload": {"image_url": Icons().get("reload"), "color": AUTO_RELOAD}, "Button.Image::auto_reload:checked": {"color": AUTO_RELOAD}, "Button.Image::auto_reload:disabled": {"color": AUTO_RELOAD}, "Button.Image::auto_reload:checked:hovered": {"color": AUTO_RELOAD_H}, "Button::reload": {"background_color": 0x0, "margin": 0, "margin_width": 1}, "Button::reload:checked": {"background_color": 0x0}, "Button::reload:hovered": {"background_color": 0x0, "color": 0xFFFFFFFF}, "Button::reload:pressed": {"background_color": 0x0}, "Button::auto_reload": {"background_color": 0x0, "margin": 0, "margin_width": 1}, "Button::auto_reload:checked": {"background_color": 0x0}, "Button::auto_reload:hovered": {"background_color": 0x0, "color": 0xFFFFFFFF}, "Button::auto_reload:pressed": {"background_color": 0x0}, "TreeView.Item.Outdated": {"color": RELOAD}, "TreeView.Item.Outdated:hovered": {"color": RELOAD_H}, "TreeView.Item.Outdated:selected": {"color": RELOAD_H}, # Top of the column section (that has sorting options) "TreeView.Header::reload_header": {"image_url": Icons().get("reload_dark")}, } self.__stage_model = None self.__items_sort_policy = ReloadColumnSortPolicy.DEFAULT def destroy(self): if self.__reload_layout: self.__reload_layout.set_mouse_pressed_fn(None) self.__reload_layout = None for model in self.__stage_item_models.values(): model.destroy() self.__stage_item_models = {} self.__stage_model = None @property def initial_width(self): """The width of the column""" return ui.Pixel(24) @property def minimum_width(self): return ui.Pixel(24) def __on_policy_changed(self): stage_model = self.__stage_model if not stage_model: return if self.__items_sort_policy == ReloadColumnSortPolicy.OUTDATE_TO_LATEST: stage_model.set_items_sort_key_func( lambda item: item.is_outdated if item.payrefs else len(item.payrefs) == 0 ) elif self.__items_sort_policy == ReloadColumnSortPolicy.LATEST_TO_OUTDATE: stage_model.set_items_sort_key_func( lambda item: item.is_outdated if item.payrefs else len(item.payrefs) == 0, reverse=True ) else: stage_model.set_items_sort_key_func(None) def __on_reload_clicked(self, weakref_stage_model, x, y, b, m): stage_model = weakref_stage_model() if not stage_model or not stage_model.stage: return if b == 1: usd_context = omni.usd.get_context_from_stage(stage_model.stage) if not usd_context: return layers_state = layers.get_layers_state(usd_context) from omni.kit.widget.live_session_management.utils import reload_outdated_layers ref_ids = layers_state.get_outdated_non_sublayer_identifiers() reload_outdated_layers(ref_ids, usd_context) elif b == 0: if self.__items_sort_policy == ReloadColumnSortPolicy.OUTDATE_TO_LATEST: self.__items_sort_policy = ReloadColumnSortPolicy.LATEST_TO_OUTDATE elif self.__items_sort_policy == ReloadColumnSortPolicy.LATEST_TO_OUTDATE: self.__items_sort_policy = ReloadColumnSortPolicy.DEFAULT else: self.__items_sort_policy = ReloadColumnSortPolicy.OUTDATE_TO_LATEST self.__on_policy_changed() def build_header(self, **kwargs): """Build the header""" stage_model = kwargs.get("stage_model", None) self.__stage_model = stage_model if stage_model: with ui.ZStack(style=self.WIDGET_STYLE): tooltip = "RMB: Reload All References/Payloads" ui.Rectangle(name="hovering", style_type_name_override="TreeView.Header", tooltip=tooltip) self.__reload_layout = ui.HStack() with self.__reload_layout: ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="reload_header", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() weakref_stage_model = weakref.ref(stage_model) self.__reload_layout.set_mouse_pressed_fn( partial(self.__on_reload_clicked, weakref_stage_model) ) else: with ui.HStack(style=self.WIDGET_STYLE): ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="reload_header", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() async def build_widget(self, item: StageColumnItem, **kwargs): """Build the reload widget""" stage_item = kwargs.get("stage_item", None) reloadable = (stage_item.payloads or stage_item.references) if not stage_item or not stage_item.prim or not reloadable: return g_auto_reload = carb.settings.get_settings().get_as_bool(layers.SETTINGS_AUTO_RELOAD_NON_SUBLAYERS) with ui.ZStack(height=20, style=self.WIDGET_STYLE): # Min size ui.Spacer(width=22) reload_model = self.__stage_item_models.get(stage_item, None) if not reload_model: reload_model = ReloadModel(stage_item) self.__stage_item_models[stage_item] = reload_model button = ui.ToolButton(reload_model) stub = "payloads" if stage_item.payloads else "references" if not reload_model.get_value_as_bool(): tooltip = "All {} up to date".format(stub) else: tooltip = "Reload {} on prim".format(stub) if stage_item.auto_reload: tooltip = "Auto Reload All Enabled" if g_auto_reload else "Auto Reload Enabled" button.enabled = False if stage_item.is_outdated and g_auto_reload and stage_item.in_session: tooltip = "Auto Reload Blocked by Live Session" button.tooltip = tooltip button.name = "auto_reload" if stage_item.auto_reload else "reload" def on_stage_items_destroyed(self, items: List[StageItem]): if not items: return for item in items: live_model = self.__stage_item_models.pop(item, None) if live_model: live_model.destroy() @property def order(self): return -104 @property def sortable(self): return True
omniverse-code/kit/exts/omni.kit.collaboration.stage_columns/omni/kit/collaboration/stage_columns/delegates/live_column_delegate.py
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved. # # NVIDIA CORPORATION and its licensors retain all intellectual property # and proprietary rights in and to this software, related documentation # and any modifications thereto. Any use, reproduction, disclosure or # distribution of this software and related documentation without an express # license agreement from NVIDIA CORPORATION is strictly prohibited. # __all__ = ["LiveColumnDelegate"] from omni.kit.widget.stage.abstract_stage_column_delegate import AbstractStageColumnDelegate, StageColumnItem from omni.kit.widget.stage import StageItem, StageModel from typing import List from ..models import LiveModel from ..icons import Icons from enum import Enum import omni.ui as ui class LiveColumnSortPolicy(Enum): DEFAULT = 0 LIVE_TO_OFFLINE = 1 OFFLINE_TO_LIVE = 2 class LiveColumnDelegate(AbstractStageColumnDelegate): """The column delegate that represents the Live column""" def __init__(self): super().__init__() self.__stage_item_models = {} from omni.ui import color as cl ITEM_DARK = 0x7723211F ICON_DARK = 0x338A8777 LIVE_GREEN = cl("#76b800") LIVE_SEL = cl("#90e203") self.WIDGET_STYLE = { "Button.Image::live": {"image_url": Icons().get("lightning"), "color": ICON_DARK}, "Button.Image::live:checked": {"color": LIVE_GREEN}, "Button.Image::live:checked:hovered": {"color": LIVE_SEL}, "Button.Image::live:disabled": {"color": 0x608A8777}, "Button.Image::live:selected": {"color": ITEM_DARK}, "Button::live": {"background_color": 0x0, "margin": 0, "margin_width": 1}, "Button::live:checked": {"background_color": 0x0}, "Button::live:hovered": {"background_color": 0x0}, "Button::live:pressed": {"background_color": 0x0}, "TreeView.Item.Live": {"color": LIVE_GREEN}, "TreeView.Item.Live:hovered": {"color": LIVE_SEL}, "TreeView.Item.Live:selected": {"color": LIVE_SEL}, # Top of the column section (that has sorting options) "TreeView.Header::live_header": {"image_url": Icons().get("lightning"), "color": 0xFF888888}, } self.__stage_model: StageModel = None self.__items_sort_policy = LiveColumnSortPolicy.DEFAULT self.__live_header_layout = None def destroy(self): for model in self.__stage_item_models.values(): model.destroy() self.__stage_item_models = {} self.__stage_model = None if self.__live_header_layout: self.__live_header_layout.set_mouse_pressed_fn(None) self.__live_header_layout = None @property def initial_width(self): """The width of the column""" return ui.Pixel(24) @property def minimum_width(self): return ui.Pixel(24) def __on_policy_changed(self): stage_model = self.__stage_model if not stage_model: return if self.__items_sort_policy == LiveColumnSortPolicy.LIVE_TO_OFFLINE: stage_model.set_items_sort_key_func( lambda item: item.in_session if item.payrefs else len(item.payrefs) == 0 ) elif self.__items_sort_policy == LiveColumnSortPolicy.OFFLINE_TO_LIVE: stage_model.set_items_sort_key_func( lambda item: item.in_session if item.payrefs else len(item.payrefs) == 0, reverse=True ) else: stage_model.set_items_sort_key_func(None) def __on_header_clicked(self, x, y, b, m): if b != 0 or not self.__stage_model: return if self.__items_sort_policy == LiveColumnSortPolicy.LIVE_TO_OFFLINE: self.__items_sort_policy = LiveColumnSortPolicy.OFFLINE_TO_LIVE elif self.__items_sort_policy == LiveColumnSortPolicy.OFFLINE_TO_LIVE: self.__items_sort_policy = LiveColumnSortPolicy.DEFAULT else: self.__items_sort_policy = LiveColumnSortPolicy.LIVE_TO_OFFLINE self.__on_policy_changed() def build_header(self, **kwargs): """Build the header""" self.__stage_model = kwargs.get("stage_model", None) with ui.ZStack(style=self.WIDGET_STYLE): tooltip = "LMB:Sort Live" ui.Rectangle(name="hovering", style_type_name_override="TreeView.Header", tooltip=tooltip) self.__live_header_layout = ui.HStack() with self.__live_header_layout: ui.Spacer() with ui.VStack(width=0): ui.Spacer() ui.Image(width=22, height=14, name="live_header", style_type_name_override="TreeView.Header") ui.Spacer() ui.Spacer() self.__live_header_layout.set_tooltip(tooltip) self.__live_header_layout.set_mouse_pressed_fn(self.__on_header_clicked) async def build_widget(self, item: StageColumnItem, **kwargs): """Build the live widget""" stage_item = kwargs.get("stage_item", None) reloadable = (stage_item.payloads or stage_item.references) if not stage_item or not stage_item.prim or not reloadable: return with ui.ZStack(height=20, style=self.WIDGET_STYLE): # Min size ui.Spacer(width=22) live_model = self.__stage_item_models.get(stage_item, None) if not live_model: live_model = LiveModel(stage_item) self.__stage_item_models[stage_item] = live_model tooltip = "Live session status" ui.ToolButton(live_model, enabled=True, name="live", tooltip=tooltip) def on_stage_items_destroyed(self, items: List[StageItem]): if not items: return for item in items: live_model = self.__stage_item_models.pop(item, None) if live_model: live_model.destroy() @property def order(self): return -103 @property def sortable(self): return True
omniverse-code/kit/exts/omni.kit.audio.test.usd/PACKAGE-LICENSES/omni.kit.audio.test.usd-LICENSE.md
Copyright (c) 2020, NVIDIA CORPORATION. All rights reserved. NVIDIA CORPORATION and its licensors retain all intellectual property and proprietary rights in and to this software, related documentation and any modifications thereto. Any use, reproduction, disclosure or distribution of this software and related documentation without an express license agreement from NVIDIA CORPORATION is strictly prohibited.
omniverse-code/kit/exts/omni.kit.audio.test.usd/config/extension.toml
[package] # Semantic Versioning is used: https://semver.org/ version = "1.0.1" category = "Internal" # Lists people or organizations that are considered the "authors" of the package. authors = ["NVIDIA"] # The title and description fields are primarly for displaying extension info in UI title = "USD Audio Tests" description="Tests that had to be moved out of omni.usd due to dependency issues" # URL of the extension source repository. repository = "" # Preview image. Folder named "data" automatically goes in git lfs (see .gitattributes file). #preview_image = "data/preview.png" # Icon is shown in Extensions window, it is recommended to be square, of size 256x256. #icon = "data/icon.png" # Keywords for the extension keywords = ["kit", "usd", "tests", "audio", "sound"] # Location of change log file in target (final) folder of extension, relative to the root. # More info on writing changelog: https://keepachangelog.com/en/1.0.0/ #changelog="docs/CHANGELOG.md" # Path (relative to the root) or content of readme markdown file for UI. #readme = "docs/README.md" [dependencies] "omni.usd" = {} "carb.audio" = {} [[python.module]] name = "omni.kit.audio.test.usd" [[test]] args = [ "--/app/file/ignoreUnsavedOnExit=true", "--/app/asyncRendering=false", # OM-20773: Use legacy bitmask to control audio-on state "--/persistent/app/viewport/displayOptions=4096", "--no-window" ] dependencies = [ "omni.kit.renderer.core", "omni.ui", "omni.kit.property.usd", "omni.kit.property.audio", "omni.kit.test_helpers_gfx", "omni.hydra.rtx", "omni.kit.window.viewport", "omni.kit.test_suite.helpers" ] stdoutFailPatterns.exclude = [ "*prim '*' is of type 'Sound', not 'Listener'*", "*sound '*' was in the incorrect position in m_sounds*", "*failed to open the new device {result = 0x00000005}*", "*failed to open the new device {result = 0x00000002}*", "*failed to create a new output streamer*", "*the asset for sound * failed to load*" ] # RTX regression OM-51983 timeout = 600
omniverse-code/kit/exts/omni.kit.audio.test.usd/omni/kit/audio/test/usd/__init__.py
pass
omniverse-code/kit/exts/omni.kit.audio.test.usd/omni/kit/audio/test/usd/tests/test_audio.py
import asyncio import time from collections import defaultdict import pathlib from PIL import Image from PIL import ImageEnhance import random import omni.kit.test_helpers_gfx.compare_utils import carb import carb.tokens import omni.kit.app import omni.kit.commands import omni.kit.test import omni.ui as ui import omni.usd.audio import os from omni.ui.tests.test_base import OmniUiTest from omni.kit.test_suite.helpers import wait_stage_loading OUTPUTS_DIR = pathlib.Path(omni.kit.test.get_test_output_path()) def wait_for_asset(test, audio, prim): i = 0 while audio.get_sound_asset_status(prim) == omni.usd.audio.AssetLoadStatus.IN_PROGRESS: time.sleep(0.001) if i > 5000: raise Exception("asset load timed out") i += 1 test.assertEqual(audio.get_sound_asset_status(prim), omni.usd.audio.AssetLoadStatus.DONE) async def wait_for_prim_change(test, context, audio, prim): await context.next_frame_async() # the asset may reload, so we need to wait for it wait_for_asset(test, audio, prim) class TestStageAudioMinimal(omni.kit.test.AsyncTestCase): async def setUp(self): self._context = omni.usd.get_context() self.assertIsNotNone(self._context) self._context.new_stage() self._stage = self._context.get_stage() self.assertIsNotNone(self._stage) self._audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(self._audio) async def test_hydra_plugin(self): # check that the hydra plugin still works self.assertTrue(omni.usd.audio.test_hydra_plugin(), "the hydra audio plugin failed to load") async def test_device(self): self._audio.set_device("default") time.sleep(2.0) self._audio.set_device("apple") time.sleep(2.0) self._audio.set_device("Speakers") time.sleep(2.0) async def test_set_doppler_default(self): self._audio.set_doppler_default(omni.usd.audio.FeatureDefault.FORCE_OFF) self.assertEqual(self._audio.get_doppler_default(), omni.usd.audio.FeatureDefault.FORCE_OFF) self._audio.set_doppler_default() self.assertEqual(self._audio.get_doppler_default(), omni.usd.audio.FeatureDefault.OFF) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_set_distance_delay_default(self): self._audio.set_distance_delay_default(omni.usd.audio.FeatureDefault.FORCE_OFF) self.assertEqual(self._audio.get_distance_delay_default(), omni.usd.audio.FeatureDefault.FORCE_OFF) self._audio.set_distance_delay_default() self.assertEqual(self._audio.get_distance_delay_default(), omni.usd.audio.FeatureDefault.OFF) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_set_interaural_delay_default(self): self._audio.set_interaural_delay_default(omni.usd.audio.FeatureDefault.FORCE_OFF) self.assertEqual(self._audio.get_interaural_delay_default(), omni.usd.audio.FeatureDefault.FORCE_OFF) self._audio.set_interaural_delay_default() self.assertEqual(self._audio.get_interaural_delay_default(), omni.usd.audio.FeatureDefault.OFF) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_set_concurrent_voices(self): self._audio.set_concurrent_voices(32) self.assertEqual(self._audio.get_concurrent_voices(), 32) self._audio.set_concurrent_voices() self.assertEqual(self._audio.get_concurrent_voices(), 64) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_speed_of_sound(self): self._audio.set_speed_of_sound(120.0) self.assertEqual(self._audio.get_speed_of_sound(), 120.0) self._audio.set_speed_of_sound() self.assertLess(abs(self._audio.get_speed_of_sound() - 340.0), 0.1) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_doppler_scale(self): self._audio.set_doppler_scale(4.0) self.assertEqual(self._audio.get_doppler_scale(), 4.0) self._audio.set_doppler_scale() self.assertEqual(self._audio.get_doppler_scale(), 1.0) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_doppler_limit(self): self._audio.set_doppler_limit(4.0) self.assertEqual(self._audio.get_doppler_limit(), 4.0) self._audio.set_doppler_limit() self.assertEqual(self._audio.get_doppler_limit(), 2.0) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_spatial_time_scale(self): self._audio.set_spatial_time_scale(4.0) self.assertEqual(self._audio.get_spatial_time_scale(), 4.0) self._audio.set_spatial_time_scale() self.assertEqual(self._audio.get_spatial_time_scale(), 1.0) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_nonspatial_time_scale(self): self._audio.set_nonspatial_time_scale(4.0) self.assertEqual(self._audio.get_nonspatial_time_scale(), 4.0) self._audio.set_nonspatial_time_scale() self.assertEqual(self._audio.get_nonspatial_time_scale(), 1.0) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_get_metadata_change_stream(self): callbacks = 0 event_type = None def event_callback(event): nonlocal event_type nonlocal callbacks event_type = event.type callbacks += 1 def wait_for_callback(initial): nonlocal callbacks i = 0 while callbacks == initial: time.sleep(0.001) if i > 1000: raise Exception("asset load timed out") i += 1 self._events = self._audio.get_metadata_change_stream() self.assertIsNotNone(self._events) self._stage_event_sub = self._events.create_subscription_to_pop( event_callback, name="stage audio test callback" ) initial = callbacks self._audio.set_doppler_default(omni.usd.audio.FeatureDefault.FORCE_OFF) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) # try the same thing twice to verify that the value needs to change to # trigger a callback initial = callbacks self._audio.set_doppler_default(omni.usd.audio.FeatureDefault.FORCE_OFF) try: wait_for_callback(initial) self.assertTrue(False) except Exception: pass self.assertEqual(callbacks, initial) initial = callbacks self._audio.set_distance_delay_default(omni.usd.audio.FeatureDefault.FORCE_OFF) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_interaural_delay_default(omni.usd.audio.FeatureDefault.FORCE_OFF) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_concurrent_voices(32) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_speed_of_sound(120.0) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_doppler_scale(4.0) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_doppler_limit(4.0) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_spatial_time_scale(4.0) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) initial = callbacks self._audio.set_nonspatial_time_scale(4.0) wait_for_callback(initial) self.assertEqual(callbacks, initial + 1) self.assertEqual(event_type, int(omni.usd.audio.EventType.METADATA_CHANGE)) class TestStageAudio(omni.kit.test.AsyncTestCase): async def setUp(self): self._context = omni.usd.get_context() self.assertIsNotNone(self._context) self._context.new_stage() self._stage = self._context.get_stage() self.assertIsNotNone(self._stage) self._audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(self._audio) extension_path = carb.tokens.get_tokens_interface().resolve("${omni.kit.audio.test.usd}") self._test_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests").absolute() self._golden_path = self._test_path.joinpath("golden") self._prim_no_filename_path = "/sound_no_filename" self._prim_no_filename = self._stage.DefinePrim(self._prim_no_filename_path, "Sound") self.assertIsNotNone(self._prim_no_filename) self._prim_bad_asset_path = "/sound_bad_asset" self._prim_bad_asset = self._stage.DefinePrim(self._prim_bad_asset_path, "Sound") self.assertIsNotNone(self._prim_bad_asset) self._prim_bad_asset.GetAttribute("filePath").Set("/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/x/y/z") self._test_sound_1ch_path = self._test_path.joinpath("short-1ch.oga").absolute() self._prim_1ch_path = "/sound_1ch" self._prim_1ch = self._stage.DefinePrim(self._prim_1ch_path, "Sound") self.assertIsNotNone(self._prim_1ch) self._prim_1ch.GetAttribute("filePath").Set(str(self._test_sound_1ch_path)) self._test_sound_2ch_path = self._test_path.joinpath("short-2ch.oga").absolute() self._prim_2ch_path = "/sound_2ch" self._prim_2ch = self._stage.DefinePrim(self._prim_2ch_path, "Sound") self.assertIsNotNone(self._prim_2ch) self._prim_2ch.GetAttribute("filePath").Set(str(self._test_sound_2ch_path)) self._test_sound_long_path = self._test_path.joinpath("long.oga").absolute() self._prim_long_path = "/sound_long" self._prim_long = self._stage.DefinePrim(self._prim_long_path, "Sound") self.assertIsNotNone(self._prim_long) self._prim_long.GetAttribute("filePath").Set(str(self._test_sound_long_path)) wait_for_asset(self, self._audio, self._prim_1ch) wait_for_asset(self, self._audio, self._prim_2ch) wait_for_asset(self, self._audio, self._prim_long) try: os.mkdir(OUTPUTS_DIR) except FileExistsError: pass async def tearDown(self): self._stage.RemovePrim(self._prim_no_filename_path) self._stage.RemovePrim(self._prim_bad_asset_path) self._stage.RemovePrim(self._prim_1ch_path) self._stage.RemovePrim(self._prim_2ch_path) self._stage.RemovePrim(self._prim_long_path) async def test_get_sound_count(self): # sounds are only counted if they have a valid asset self.assertEqual(self._audio.get_sound_count(), 3); self._audio.draw_waveform(self._prim_no_filename, 1, 1) self._audio.draw_waveform(self._prim_bad_asset, 1, 1) self.assertEqual(self._audio.get_sound_count(), 5); async def test_is_sound_playing(self): self.assertFalse(self._audio.is_sound_playing(self._prim_long)) # the sound asset for this prim is silent, so the test shouldn't bother testers # play the sound self._audio.play_sound(self._prim_long) self.assertTrue(self._audio.is_sound_playing(self._prim_long)) # stop the sound self._audio.stop_sound(self._prim_long) self.assertFalse(self._audio.is_sound_playing(self._prim_long)) # do it again, but use stop_all_sounds() instead self._audio.play_sound(self._prim_long) self.assertTrue(self._audio.is_sound_playing(self._prim_long)) self._audio.stop_all_sounds() self.assertFalse(self._audio.is_sound_playing(self._prim_long)) # do it again but with spawn_voice() voice = self._audio.spawn_voice(self._prim_long) # the voice is not managed by IStageAudio self.assertFalse(self._audio.is_sound_playing(self._prim_long)) self.assertTrue(voice.is_playing()) voice.stop() self.assertFalse(voice.is_playing()) async def test_subscribe_to_asset_load(self): loaded = False def load_callback(): self.assertEqual(self._audio.get_sound_asset_status(self._prim_long), omni.usd.audio.AssetLoadStatus.DONE) nonlocal loaded loaded = True # try it with something that's already loaded to ensure a callback will occur in this case self.assertTrue(self._audio.subscribe_to_asset_load(self._prim_long, load_callback)) while not loaded: time.sleep(0.001) if i > 5000: raise Exception("asset load timed out") i += 1 # switch the file path and try again, so a load will actually be needed self._prim_2ch.GetAttribute("filePath").Set(str(self._test_sound_2ch_path)) loaded = False self.assertTrue(self._audio.subscribe_to_asset_load(self._prim_long, load_callback)) while not loaded: time.sleep(0.001) if i > 5000: raise Exception("asset load timed out") i += 1 async def test_draw_waveform(self): # toggle in case you want to regenerate waveforms GENERATE_GOLDEN_IMAGES = False if GENERATE_GOLDEN_IMAGES: print("!!!!! Golden images are being regenerated to '" + str(pathlib.Path(OUTPUTS_DIR)) + "'.") print("!!!!! Once regenerated, these files should be copied to '" + str(self._golden_path) + "'.") print("!!!!! Note: the `GENERATE_GOLDEN_IMAGES` variable being set to 'True' above should never be committed.") W = 256 H = 256 BASE_NAME = "test_stage_audio.draw_waveform" TEST_NAMES = [ BASE_NAME + ".1ch.USE_LINES.SPLIT_CHANNELS.png", BASE_NAME + ".1ch.USE_LINES.SPLIT_CHANNELS.BACKGROUNDCOLOR.png", BASE_NAME + ".2ch.USE_LINES.SPLIT_CHANNELS.png", BASE_NAME + ".2ch.USE_LINES.SPLIT_CHANNELS.PARTIAL_COLOR.png", BASE_NAME + ".2ch.USE_LINES.SPLIT_CHANNELS.COLOR.png", BASE_NAME + ".1ch.USE_LINES.SPLIT_CHANNELS.MEDIA_OFFSET_START.png", BASE_NAME + ".1ch.USE_LINES.SPLIT_CHANNELS.MEDIA_OFFSET_START.MEDIA_OFFSET_END.png", BASE_NAME + ".1ch.png", BASE_NAME + ".1ch.ALPHA_BLEND.png", BASE_NAME + ".2ch.ch_2.png", BASE_NAME + ".2ch.ALPHA_BLEND.MULTI_CHANNEL.png", BASE_NAME + ".2ch.NOISE_COLOR.2bit.png", ] raw = self._audio.draw_waveform(self._prim_no_filename, W, H) self.assertEqual(len(raw), 0) raw = self._audio.draw_waveform(self._prim_bad_asset, W, H) self.assertEqual(len(raw), 0) # render the mono waveform raw = self._audio.draw_waveform(self._prim_1ch, W, H) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[0]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[0]), self._golden_path.joinpath(TEST_NAMES[0]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[0] + ".diff.png")), 0.1) # render it with a custom background color raw = self._audio.draw_waveform(self._prim_1ch, W, H, background = [1.0, 1.0, 1.0, 1.0]) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[1]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[1]), self._golden_path.joinpath(TEST_NAMES[1]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[1] + ".diff.png")), 0.1) # render the stereo waveform raw = self._audio.draw_waveform(self._prim_2ch, W, H) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[2]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[2]), self._golden_path.joinpath(TEST_NAMES[2]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[2] + ".diff.png")), 0.1) # add custom channel colors, but only set it for 4 channel to verify that the default still works raw = self._audio.draw_waveform(self._prim_2ch, W, H, colors = [[1.0, 0, 1.0, 1.0]]) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[3]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[3]), self._golden_path.joinpath(TEST_NAMES[3]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[3] + ".diff.png")), 0.1) # try 2 custom channel colors now raw = self._audio.draw_waveform(self._prim_2ch, W, H, colors = [[1.0, 0, 0, 1.0], [0, 0, 1.0, 1.0]]) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[4]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[4]), self._golden_path.joinpath(TEST_NAMES[4]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[4] + ".diff.png")), 0.1) # this sound asset is 0.693 seconds, so 0.2 is substantial self._prim_1ch.GetAttribute("mediaOffsetStart").Set(0.2); await wait_for_prim_change(self, self._context, self._audio, self._prim_1ch) raw = self._audio.draw_waveform(self._prim_1ch, W, H) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[5]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[5]), self._golden_path.joinpath(TEST_NAMES[5]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[5] + ".diff.png")), 0.1) self._prim_1ch.GetAttribute("mediaOffsetEnd").Set(0.4); await wait_for_prim_change(self, self._context, self._audio, self._prim_1ch) raw = self._audio.draw_waveform(self._prim_1ch, W, H) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[6]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[6]), self._golden_path.joinpath(TEST_NAMES[6]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[6] + ".diff.png")), 0.1) # reset prim parameters self._prim_1ch.GetAttribute("mediaOffsetStart").Set(0.0); self._prim_1ch.GetAttribute("mediaOffsetEnd").Set(0.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_1ch) # test it with no flags raw = self._audio.draw_waveform(self._prim_1ch, W, H, flags = 0) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[7]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[7]), self._golden_path.joinpath(TEST_NAMES[7]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[7] + ".diff.png")), 0.1) # test it with alpha blending raw = self._audio.draw_waveform(self._prim_1ch, W, H, flags = carb.audio.AUDIO_IMAGE_FLAG_ALPHA_BLEND, colors = [[1.0, 1.0, 1.0, 0.2]]) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[8]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[8]), self._golden_path.joinpath(TEST_NAMES[8]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[8] + ".diff.png")), 0.1) # test choosing the second channel in a multi-channel image raw = self._audio.draw_waveform(self._prim_2ch, W, H, flags = 0, channel = 1) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[9]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[9]), self._golden_path.joinpath(TEST_NAMES[9]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[9] + ".diff.png")), 0.1) # test choosing the second channel in a multi-channel image raw = self._audio.draw_waveform(self._prim_2ch, W, H, flags = carb.audio.AUDIO_IMAGE_FLAG_MULTI_CHANNEL | carb.audio.AUDIO_IMAGE_FLAG_ALPHA_BLEND, colors = [[1.0, 0.0, 0.0, 1.0], [0.0, 0.0, 1.0, 1.0]]) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: img.convert("RGB").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[10]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[10]), self._golden_path.joinpath(TEST_NAMES[10]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[10] + ".diff.png")), 0.1) # the colors are going to be random, so turn all the pixels to white before comparing raw = self._audio.draw_waveform(self._prim_2ch, W, H, flags = carb.audio.AUDIO_IMAGE_FLAG_NOISE_COLOR) self.assertEqual(len(raw), W * H * 4) with Image.frombytes("RGBX", (W, H), bytes(raw), 'raw') as img: # increase contrast by a factor of 256.0 ImageEnhance.Contrast(img.convert("RGB")).enhance(256.0).convert("1").save(str(pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[11]))) if not GENERATE_GOLDEN_IMAGES: self.assertLess(omni.kit.test_helpers_gfx.compare_utils.compare( pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[11]), self._golden_path.joinpath(TEST_NAMES[11]), pathlib.Path(OUTPUTS_DIR).joinpath(TEST_NAMES[11] + ".diff.png")), 2.0) # this won't crash or fail, but which flag is chosen is undefined raw = self._audio.draw_waveform(self._prim_2ch, W, H, flags = carb.audio.AUDIO_IMAGE_FLAG_MULTI_CHANNEL | carb.audio.AUDIO_IMAGE_FLAG_SPLIT_CHANNELS) self.assertEqual(len(raw), W * H * 4) async def test_sound_length(self): FUZZ = 0.00001 ASSET_LENGTH = 120.0 self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # start time shouldn't change anything self._prim_long.GetAttribute("startTime").Set(12.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # end time that exceeds the asset length shouldn't change anything self._prim_long.GetAttribute("endTime").Set(ASSET_LENGTH + 20.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # end time 6 seconds after start time self._prim_long.GetAttribute("endTime").Set(18.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - ASSET_LENGTH), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # trim the audio track itself start_trim = 30.0 trimmed_length = ASSET_LENGTH - start_trim self._prim_long.GetAttribute("mediaOffsetStart").Set(start_trim); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # excessive end offset has no effect self._prim_long.GetAttribute("mediaOffsetEnd").Set(ASSET_LENGTH + 1.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - 6.0), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); end_trim = 32.0 trimmed_length = end_trim - start_trim # use a real trim now self._prim_long.GetAttribute("mediaOffsetEnd").Set(end_trim); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # speed it up by a factor of 2 self._prim_long.GetAttribute("timeScale").Set(2.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - trimmed_length / 2), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - trimmed_length / 2), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length / 2), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # try adding a loop count to double the time now self._prim_long.GetAttribute("loopCount").Set(1); self._prim_long.GetAttribute("timeScale").Set(1.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) self.assertLess(abs(self._audio.get_sound_length(self._prim_long) - 2 * trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH) - 2 * trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); # try looping infinitely and remove end time self._prim_long.GetAttribute("loopCount").Set(-1); self._prim_long.GetAttribute("endTime").Set(-1.0); await wait_for_prim_change(self, self._context, self._audio, self._prim_long) # check that it's some enormous number self.assertGreater(self._audio.get_sound_length(self._prim_long), 2**24); self.assertGreater(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.PLAY_LENGTH), 2**24); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.SOUND_LENGTH) - trimmed_length), FUZZ); self.assertLess(abs(self._audio.get_sound_length(self._prim_long, omni.usd.audio.SoundLengthType.ASSET_LENGTH) - ASSET_LENGTH), FUZZ); class TestCaptureStreamer(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): extension_path = carb.tokens.get_tokens_interface().resolve("${omni.kit.audio.test.usd}") self._usd_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests").absolute() from omni.kit.property.usd.usd_attribute_widget import UsdPropertiesWidget import omni.kit.window.property as p self._w = p.get_window() try: os.mkdir(OUTPUTS_DIR) except FileExistsError: pass async def test_capture_streamer(self): # ****** test setup ****** audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(audio) usd_context = omni.usd.get_context() self.assertIsNotNone(usd_context) # load a test stage that has some audio prims in it. test_file_path = self._usd_path.joinpath("audio_test.usda").absolute() await usd_context.open_stage_async(str(test_file_path)) await omni.kit.app.get_app().next_update_async() # ****** create and setup the streamers ****** # create a streamer to capture the audio from the stage. streamer = audio.create_capture_streamer() self.assertNotEqual(streamer, audio.INVALID_STREAMER_ID) streamer2 = audio.create_capture_streamer() self.assertNotEqual(streamer2, audio.INVALID_STREAMER_ID) self.assertNotEqual(streamer, streamer2) streamer3 = audio.create_capture_streamer() self.assertNotEqual(streamer3, audio.INVALID_STREAMER_ID) self.assertNotEqual(streamer, streamer3) serial = random.randrange(2**32) def gen_name(name): return str(OUTPUTS_DIR.joinpath(str(serial) + "-" + name)) audio.set_capture_filename(streamer, gen_name("streamer1.wav")) audio.set_capture_filename(streamer2, gen_name("streamer2.wav")) # intentionally don't set the filename for streamer3. # ****** test some captures ****** # perform a capture on a single streamer with an overridden filename. success = audio.start_capture(streamer, gen_name("streamer3.wav")) self.assertTrue(success) await asyncio.sleep(0.5) success = audio.stop_capture(streamer) self.assertTrue(success) self.assertTrue(audio.wait_for_capture(streamer, 10000)) self.assertTrue(os.path.exists(gen_name("streamer3.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer3.wav"))) self.assertFalse(os.path.exists(gen_name("streamer1.wav"))) self.assertFalse(os.path.exists(gen_name("streamer2.wav"))) streamer3_mtime = os.path.getmtime(gen_name("streamer3.wav")) await asyncio.sleep(0.5) self.assertEqual(streamer3_mtime, os.path.getmtime(gen_name("streamer3.wav"))) # perform a capture on multiple streamers simultaneously. success = audio.start_captures([streamer, streamer2]) self.assertTrue(success) await asyncio.sleep(0.5) success = audio.stop_captures([streamer2, streamer]) self.assertTrue(success) self.assertTrue(audio.wait_for_capture(streamer, 10000)) self.assertTrue(audio.wait_for_capture(streamer2, 10000)) self.assertTrue(os.path.exists(gen_name("streamer1.wav"))) self.assertTrue(os.path.exists(gen_name("streamer2.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer1.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer2.wav"))) # streamer3 shouldn't have been modified self.assertEqual(streamer3_mtime, os.path.getmtime(gen_name("streamer3.wav"))) streamer1_mtime = os.path.getmtime(gen_name("streamer1.wav")) streamer2_mtime = os.path.getmtime(gen_name("streamer2.wav")) # perform a capture on multiple streamers simultaneously where one has not had a filename set. audio.set_capture_filename(streamer, gen_name("streamer4.wav")) success = audio.start_captures([streamer, streamer3]) self.assertTrue(success) await asyncio.sleep(0.5) success = audio.stop_captures([streamer3, streamer]) self.assertTrue(audio.wait_for_capture(streamer3, 10000)) self.assertTrue(audio.wait_for_capture(streamer, 10000)) self.assertTrue(os.path.exists(gen_name("streamer4.wav"))) self.assertEqual(streamer1_mtime, os.path.getmtime(gen_name("streamer1.wav"))) self.assertEqual(streamer2_mtime, os.path.getmtime(gen_name("streamer2.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer4.wav"))) self.assertEqual(streamer3_mtime, os.path.getmtime(gen_name("streamer3.wav"))) # start a capture while another streamer is already running. audio.set_capture_filename(streamer, gen_name("streamer5.wav")) audio.set_capture_filename(streamer2, gen_name("streamer6.wav")) success = audio.start_capture(streamer, None) self.assertTrue(success) await asyncio.sleep(0.5) success = audio.start_captures([streamer2]) self.assertTrue(success) await asyncio.sleep(0.5) success = audio.stop_captures([streamer2, streamer]) self.assertTrue(audio.wait_for_capture(streamer, 10000)) self.assertTrue(audio.wait_for_capture(streamer2, 10000)) self.assertTrue(os.path.exists(gen_name("streamer5.wav"))) self.assertTrue(os.path.exists(gen_name("streamer6.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer5.wav"))) self.assertTrue(os.path.isfile(gen_name("streamer6.wav"))) # start a capture on an invalid filename. success = audio.start_capture(streamer, "path/does/not/exist/streamer7.wav") self.assertFalse(success) if success: await asyncio.sleep(0.5) success = audio.stop_capture(streamer) self.assertFalse(success) self.assertFalse(os.path.exists("path/does/not/exist/streamer7.wav")) success = audio.set_capture_filename(streamer, "other/bad/path/streamer.wav") self.assertFalse(success) success = audio.set_capture_filename(streamer, "other/bad/path") self.assertFalse(success) success = audio.set_capture_filename(streamer, "") self.assertFalse(success) # try starting the streamer before destroying them success = audio.start_capture(streamer2, None) self.assertTrue(success) await asyncio.sleep(0.5) # ****** clean up ****** # destroy the streamers. audio.destroy_capture_streamer(streamer) audio.destroy_capture_streamer(streamer2) audio.destroy_capture_streamer(streamer3) # try starting a capture on a destroyed streamer. success = audio.start_capture(streamer, gen_name("streamer8.wav")) self.assertFalse(success) self.assertFalse(os.path.exists(gen_name("streamer8.wav"))) success = audio.start_capture(streamer2, gen_name("streamer9.wav")) self.assertFalse(success) self.assertFalse(os.path.exists(gen_name("streamer9.wav"))) # Need to wait for an additional frames for omni.ui rebuild to take effect await wait_stage_loading() await usd_context.new_stage_async() await omni.kit.app.get_app().next_update_async() class TestCaptureEvents(omni.kit.test.AsyncTestCase): async def setUp(self): self._context = omni.usd.get_context() self.assertIsNotNone(self._context) await self._context.new_stage_async() self._stage = self._context.get_stage() self.assertIsNotNone(self._stage) self._audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(self._audio) extension_path = carb.tokens.get_tokens_interface().resolve("${omni.kit.audio.test.usd}") self._test_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests").absolute() self._test_sound_1ch_path = self._test_path.joinpath("short-1ch.oga").absolute() self._prim_1ch_path = "/sound_1ch" self._prim_1ch = self._stage.DefinePrim(self._prim_1ch_path, "Sound") self.assertIsNotNone(self._prim_1ch) self._prim_1ch.GetAttribute("filePath").Set(str(self._test_sound_1ch_path)) self._prim_1ch.GetAttribute("startTime").Set(-1.0) self._streamer = self._audio.create_capture_streamer() self.assertNotEqual(self._streamer, omni.usd.audio.INVALID_STREAMER_ID) async def tearDown(self): self._audio.destroy_capture_streamer(self._streamer) async def test_capture_events(self): fmt = None open_count = 0 close_count = 0 data = [] def open_impl(stream_fmt): nonlocal fmt nonlocal open_count fmt = stream_fmt open_count += 1 def write_impl(stream_data): nonlocal data data += stream_data def close_impl(): nonlocal close_count close_count += 1 events = self._audio.create_event_stream_for_capture(self._streamer) self.assertIsNotNone(events) self.assertTrue(events) # create the listener in the middle of the stream and verify that nothing # is actually produced self._audio.start_capture(self._streamer) await asyncio.sleep(0.2) listener = omni.usd.audio.StreamListener(events, open_impl, write_impl, close_impl) self.assertIsNotNone(listener) self._audio.stop_capture(self._streamer) await asyncio.sleep(0.2) self.assertIsNone(fmt) self.assertEqual(open_count, 0); self.assertEqual(close_count, 0); self.assertEqual(len(data), 0); # this time, it should actually do something self._audio.start_capture(self._streamer) await asyncio.sleep(0.2) self.assertEqual(open_count, 1); self.assertIsNotNone(fmt) self.assertEqual(close_count, 0); self.assertGreater(len(data), 0); self._audio.stop_capture(self._streamer) await asyncio.sleep(0.2) self.assertEqual(open_count, 1); self.assertIsNotNone(fmt) self.assertEqual(close_count, 1); self.assertGreater(len(data), 0); # check that nothing was played silence = 0 if fmt.format == carb.audio.SampleFormat.PCM8: silence = 127 for v in data: self.assertEqual(v, silence); # this time we'll actually play a sound with it data = [] self._audio.start_capture(self._streamer) await asyncio.sleep(0.1) voice = self._audio.spawn_voice(self._prim_1ch) i = 0 while voice.is_playing(): await asyncio.sleep(0.01) i += 1 if (i == 2000): self.assertFalse("test timed out") self._audio.stop_capture(self._streamer) await asyncio.sleep(0.2) self.assertEqual(open_count, 2); self.assertIsNotNone(fmt) self.assertEqual(close_count, 2); self.assertGreater(len(data), 0); silent = True for v in data: if v != silence: silent = False break self.assertFalse(silent) class TestListenerEnum(omni.kit.test.AsyncTestCase): # Before running each test async def setUp(self): extension_path = carb.tokens.get_tokens_interface().resolve("${omni.kit.audio.test.usd}") self._usd_path = pathlib.Path(extension_path).joinpath("data").joinpath("tests").absolute() from omni.kit.property.usd.usd_attribute_widget import UsdPropertiesWidget import omni.kit.window.property as p self._w = p.get_window() async def test_listener_enum(self): # ****** test setup ****** audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(audio) usd_context = omni.usd.get_context() self.assertIsNotNone(usd_context) # load a test stage that has some audio prims in it. test_file_path = self._usd_path.joinpath("audio_test2.usda").absolute() await usd_context.open_stage_async(str(test_file_path)) await omni.kit.app.get_app().next_update_async() await wait_stage_loading() # ****** try some bad parameters ****** count = audio.get_listener_count() self.assertNotEqual(count, 0) # try an out of range index. Note that we can't try a negative number here because # pybind freaks out and throws a TypeError exception because it doesn't match the # `size_t` argument. prim = audio.get_listener_by_index(count) self.assertIsNone(prim) prim = audio.get_listener_by_index(count + 1) self.assertIsNone(prim) prim = audio.get_listener_by_index(count + 20000) self.assertIsNone(prim) prim = audio.get_listener_by_index(count - 1) self.assertIsNotNone(prim) prim = None # ****** enumerate the stage listeners ****** count = audio.get_listener_count() self.assertNotEqual(count, 0) for i in range(0, count): prim = audio.get_listener_by_index(i) self.assertIsNotNone(prim) # Need to wait for an additional frames for omni.ui rebuild to take effect await wait_stage_loading() await usd_context.new_stage_async() await omni.kit.app.get_app().next_update_async() class TestStageAudioListeners(omni.kit.test.AsyncTestCase): async def setUp(self): self._context = omni.usd.get_context() self.assertIsNotNone(self._context) self._context.new_stage() self._stage = self._context.get_stage() self.assertIsNotNone(self._stage) self._audio = omni.usd.audio.get_stage_audio_interface() self.assertIsNotNone(self._audio) extension_path = carb.tokens.get_tokens_interface().resolve("${omni.kit.audio.test.usd}") self._prim_path = "/listener" self._prim = self._stage.DefinePrim(self._prim_path, "Listener") self.assertIsNotNone(self._prim) await self._context.next_frame_async() async def tearDown(self): self._stage.RemovePrim(self._prim_path) async def test_get_listener_count(self): self.assertEqual(self._audio.get_listener_count(), 1) self._new_prim_path = "/listener1" self._new_prim = self._stage.DefinePrim(self._new_prim_path, "Listener") await self._context.next_frame_async() self.assertEqual(self._audio.get_listener_count(), 2) self._stage.RemovePrim(self._new_prim_path) async def test_set_active_listener(self): self.assertIsNone(self._audio.get_active_listener()) self._new_prim_path = "/sound" self._new_prim = self._stage.DefinePrim(self._new_prim_path, "Sound") await self._context.next_frame_async() self.assertFalse(self._audio.set_active_listener(self._new_prim)) self._stage.RemovePrim(self._new_prim_path) self.assertTrue(self._audio.set_active_listener(self._prim)) self.assertEqual(self._audio.get_active_listener(), self._prim) self.assertTrue(self._audio.set_active_listener(None)) self.assertIsNone(self._audio.get_active_listener()) # FIXME: This is just verifying that we can get/set this value. # This test should somehow verify that this feature is actually # detectable in the output audio. async def test_get_listener_by_index(self): # full enumeration of the 1 sound in the scene self.assertEqual(self._audio.get_listener_by_index(0), self._prim) self.assertIsNone(self._audio.get_listener_by_index(1))
omniverse-code/kit/exts/omni.kit.audio.test.usd/omni/kit/audio/test/usd/tests/__init__.py
from .test_audio import *