forked from assimp/assimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unit test for X3D IndexedLineSet
Unit test for issue assimp#3101 Thanks to @mvidiassov for the X3D test file!
- Loading branch information
1 parent
9d71a27
commit 74af43f
Showing
2 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE X3D PUBLIC "ISO//Web3D//DTD X3D 3.0//EN" "http://www.web3d.org/specifications/x3d-3.0.dtd"> | ||
<X3D profile='Interchange' version='3.0' xmlns:xsd='http://www.w3.org/2001/XMLSchema-instance' xsd:noNamespaceSchemaLocation='http://www.web3d.org/specifications/x3d-3.0.xsd'> | ||
<head> | ||
</head> | ||
<Scene> | ||
<WorldInfo title='vertices.x3d'/> | ||
<NavigationInfo type='"EXAMINE" "WALK" "FLY" "ANY"'/> | ||
<Viewpoint description='vertices' position='0 0 10'/> | ||
<Shape> | ||
<Appearance> | ||
<Material emissiveColor='1 0 0'/> | ||
</Appearance> | ||
<IndexedLineSet coordIndex='0 1 2 3 0 -1'> | ||
<Coordinate point='1 0 0 1 1 0 0 1 0 0 0 0'/> | ||
</IndexedLineSet> | ||
</Shape> | ||
</Scene> | ||
</X3D> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters