SheafSystem  0.0.0.0
field_e3_funcs.h
1 
2 //
3 // Copyright (c) 2014 Limit Point Systems, Inc.
4 //
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 // http://www.apache.org/licenses/LICENSE-2.0
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17 
18 #ifndef FIELD_E3_FUNCS_H
19 #define FIELD_E3_FUNCS_H
20 
21 #ifndef SHEAF_DLL_SPEC_H
22 #include "SheafSystem/sheaf_dll_spec.h"
23 #endif
24 
25 namespace fields
26 {
27 
32 namespace field_e3_algebra
33 {
34 
35 //==============================================================================
37 //==============================================================================
39 
44 void SHEAF_DLL_SPEC cross(const field_e3& x0, const field_e3& x1, field_e3& xresult,
45  bool xauto_access);
46 
51 void SHEAF_DLL_SPEC cross_equal(field_e3& xresult, const field_e3& xother,
52  bool xauto_access);
53 
55 
56 } // namespace field_e3_algebra
57 
58 } // namespace fields
59 
60 #endif // ifndef FIELD_E3_FUNCS_H
void SHEAF_DLL_SPEC cross(const field_e3 &x0, const field_e3 &x1, field_e3 &xresult, bool xauto_access)
The 3D Euclidean vector "cross" product of x0 with x1 (pre-allocated version).
Namespace for fields component of sheaf system.
void SHEAF_DLL_SPEC cross_equal(field_e3 &xresult, const field_e3 &xother, bool xauto_access)
The 3D Euclidean vector "cross" product of xresult with xother, /// synonym for cross(xresult, xother, xresult, xauto_access).
A property of type sec_e3 as a function of global coordinates.
Definition: field_e3.h:50