a04e0385e4
PiperOrigin-RevId: 788075561 Change-Id: If37cc254cab0411454de7663e0b3ff9f2b263281
45 lines
1.7 KiB
C
45 lines
1.7 KiB
C
// Copyright 2025 DeepMind Technologies Limited
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
#ifndef MUJOCO_EXPERIMENTAL_SRC_USD_USD_TO_MJSPEC_H_
|
|
#define MUJOCO_EXPERIMENTAL_SRC_USD_USD_TO_MJSPEC_H_
|
|
|
|
#include <mujoco/mujoco.h>
|
|
#include <pxr/usd/usd/common.h>
|
|
|
|
// Given a USD file parse to a spec, then compile and return the low-level
|
|
// model.
|
|
//
|
|
// Particular care is taken for physics data to be lossless but visual
|
|
// data such as materials may be lossy.
|
|
MJAPI mjModel* mj_loadUSD(const char* filename, const mjVFS* vfs, char* error,
|
|
int error_sz);
|
|
|
|
// Given a USD layer identifier, this function will do a best effort conversion
|
|
// from the composed stage to mjSpec.
|
|
//
|
|
// Particular care is taken for physics data to be lossless but visual
|
|
// data such as materials may be lossy.
|
|
MJAPI mjSpec* mj_parseUSD(const char* identifier, const mjVFS* vfs, char* error,
|
|
int error_sz);
|
|
|
|
// Given a USD stage, this function will do a best effort conversion to
|
|
// mjSpec.
|
|
//
|
|
// Particular care is taken for physics data to be lossless but visual
|
|
// data such as materials may be lossy.
|
|
MJAPI mjSpec* mj_parseUSDStage(pxr::UsdStageRefPtr stage);
|
|
|
|
#endif // MUJOCO_EXPERIMENTAL_SRC_USD_USD_TO_MJSPEC_H_
|