Skip to content

Commit 967dacb

Browse files
authored
Remove test outputs (#62)
Signed-off-by: Matias Codesal <mcodesal@nvidia.com>
1 parent 6234b68 commit 967dacb

1 file changed

Lines changed: 0 additions & 4 deletions

File tree

docs/stage-setting/stage.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,6 @@ Some of the functions we will use to access the stage will be the following:
8787
- [`Usd.Stage.Open()`](https://openusd.org/release/api/class_usd_stage.html#ad3e185c150ee38ae13fb76115863d108): Opens an existing USD file as a stage.
8888
- [`Usd.Stage.Save()`](https://openusd.org/release/api/class_usd_stage.html#adefa2f7ebfc4d8c09f0cd54419aa36c4): Saves the current stage of a USD stage back to a file. If there are multiple layers in the stage, all edited layers that contribute to the stage are being saved. In our case, all edits are being done in a single layer.
8989

90-
Hello World!
91-
Hello too!
92-
9390
```{code-cell}
9491
# Import the `Usd` module from the `pxr` package:
9592
from pxr import Usd
@@ -99,7 +96,6 @@ file_path = "_assets/first_stage.usda"
9996
# Create a stage at the given `file_path`:
10097
stage: Usd.Stage = Usd.Stage.CreateNew(file_path)
10198
print(stage.ExportToString(addSourceFileComment=False))
102-
print("Hello World!")
10399
```
104100

105101
Here we created a `usda` file using Python, loaded it as a stage, and printed out the stage's contents. Since nothing is in our stage we do not get much from the output.

0 commit comments

Comments
 (0)