IOSS 2.0
Loading...
Searching...
No Matches
ImageSetCameraValidTests.h
Go to the documentation of this file.
1// Copyright(C) 1999-2021 National Technology & Engineering Solutions
2// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
3// NTESS, the U.S. Government retains certain rights in this software.
4//
5// See packages/seacas/LICENSE for details
6
7#ifndef __IMAGE_SET_CAMERA_VALID_TESTS_H
8#define __IMAGE_SET_CAMERA_VALID_TESTS_H
9
10#include <string>
11
13 begin catalyst
14 begin imageset fooImageset
15 look at absolute point = 1.1 2 3e-8
16 image size = 800 450
17 end imageset
18 end
19 )";
20
22 begin catalyst
23 begin imageset fooImageset
24 look at relative point = 1.5 0.5 0.5
25 image size = 800 450
26 end imageset
27 end
28 )";
29
31 begin catalyst
32 begin imageset fooImageset
33 look at element = 17
34 image size = 800 450
35 end imageset
36 end
37 )";
38
39std::string ImagesetCameraLookAtNode = R"(
40 begin catalyst
41 begin imageset fooImageset
42 look at node = 20
43 image size = 800 450
44 end imageset
45 end
46 )";
47
49 begin catalyst
50 begin imageset fooImageset
51 look at relative distance = 2.0
52 image size = 800 450
53 end imageset
54 end
55 )";
56
58 begin catalyst
59 begin imageset fooImageset
60 look at absolute distance = 15.0
61 image size = 800 450
62 end imageset
63 end
64 )";
65
66std::string ImagesetCameraUpVector = R"(
67 begin catalyst
68 begin imageset fooImageset
69 up vector = 0 1 2
70 image size = 800 450
71 end imageset
72 end
73 )";
74
75std::string ImagesetCameraFOV = R"(
76 begin catalyst
77 begin imageset fooImageset
78 camera fov = 45
79 look at relative point = 0.0 0.0 0.0
80 look at absolute distance = 10.0
81 image size = 800 450
82 end imageset
83 end
84 )";
85
86#endif /* __IMAGE_SET_CAMERA_VALID_TESTS_H */
std::string ImagesetCameraLookAtAbsoluteDistance
Definition ImageSetCameraValidTests.h:57
std::string ImagesetCameraLookAtRelativeDistance
Definition ImageSetCameraValidTests.h:48
std::string ImagesetCameraFOV
Definition ImageSetCameraValidTests.h:75
std::string ImagesetCameraLookAtAbsolutePoint
Definition ImageSetCameraValidTests.h:12
std::string ImagesetCameraLookAtElement
Definition ImageSetCameraValidTests.h:30
std::string ImagesetCameraLookAtNode
Definition ImageSetCameraValidTests.h:39
std::string ImagesetCameraUpVector
Definition ImageSetCameraValidTests.h:66
std::string ImagesetCameraLookAtRelativePoint
Definition ImageSetCameraValidTests.h:21