source:
sasview/src/sas/sascalc/simulation/geoshapespy/tests/testorientation.cc
@
1b9a367
Last change on this file since 1b9a367 was d85c194, checked in by Piotr Rozyczko <piotr.rozyczko@…>, 9 years ago | |
---|---|
|
|
File size: 216 bytes |
Line | |
---|---|
1 | #include "sphere.h" |
2 | #include <iostream> |
3 | |
4 | int main(){ |
5 | Sphere sph1(10); |
6 | sph1.SetOrientation(10,20,30); |
7 | sph1.SetCenter(1,5,10); |
8 | |
9 | vector<double> v1 = sph1.GetOrientation(); |
10 | cout << v1[0] <<endl; |
11 | |
12 | return 0; |
13 | } |
Note: See TracBrowser
for help on using the repository browser.