├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── pc_lib ├── assets │ ├── Annotation_Arrow.blend │ ├── Dimension_Arrow.blend │ └── Title_Block.blend ├── pc_pointer_utils.py ├── pc_types.py ├── pc_unit.py └── pc_utils.py ├── thumbnail.blend ├── toy_box_drop_ops.py ├── toy_box_ops.py ├── toy_box_props.py ├── toy_box_save_ops.py ├── toy_box_ui.py └── toy_box_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/__init__.py -------------------------------------------------------------------------------- /pc_lib/assets/Annotation_Arrow.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/assets/Annotation_Arrow.blend -------------------------------------------------------------------------------- /pc_lib/assets/Dimension_Arrow.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/assets/Dimension_Arrow.blend -------------------------------------------------------------------------------- /pc_lib/assets/Title_Block.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/assets/Title_Block.blend -------------------------------------------------------------------------------- /pc_lib/pc_pointer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/pc_pointer_utils.py -------------------------------------------------------------------------------- /pc_lib/pc_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/pc_types.py -------------------------------------------------------------------------------- /pc_lib/pc_unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/pc_unit.py -------------------------------------------------------------------------------- /pc_lib/pc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/pc_lib/pc_utils.py -------------------------------------------------------------------------------- /thumbnail.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/thumbnail.blend -------------------------------------------------------------------------------- /toy_box_drop_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_drop_ops.py -------------------------------------------------------------------------------- /toy_box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_ops.py -------------------------------------------------------------------------------- /toy_box_props.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_props.py -------------------------------------------------------------------------------- /toy_box_save_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_save_ops.py -------------------------------------------------------------------------------- /toy_box_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_ui.py -------------------------------------------------------------------------------- /toy_box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CreativeDesigner3D/Library_Toy_Box/HEAD/toy_box_utils.py --------------------------------------------------------------------------------