コンテンツにスキップ

サンプルです

ipynbFile sample__サンプルです.ipynb

1
print('hello world')

JupyterNotebookの内容を、mkdocsで公開できます。

In [4]:

1
2
3
4
5
from pxr import Usd

stage = Usd.Stage.CreateInMemory()
stage.DefinePrim("/sample")
print(stage.ExportToString())

Success

1
2
3
4
5
6
7
8
9
#usda 1.0
(
    doc = """Generated from Composed Stage of root layer 
"""
)

def "sample"
{
}

実行結果も表示することができます。


最終更新日: 2021-07-04 02:29:54