*/
unsigned int number_of_children () const;
+ /**
+ * Enquire some information about
+ * whether the face with the
+ * given number is in standard
+ * orientation or not. This
+ * information is only useful
+ * (and available) in 3d, see the
+ * documentation of the
+ * respective class. For all
+ * other dimensions, this
+ * function should not be called
+ * and triggers and assertion if
+ * done so.
+ */
+ bool get_face_orientation (const unsigned int face) const;
+
private:
/**
* Copy operator. This is normally
*/
unsigned int number_of_children () const;
+ /**
+ * Enquire some information about
+ * whether the face with the
+ * given number is in standard
+ * orientation or not. This
+ * information is only useful
+ * (and available) in 3d, see the
+ * documentation of the
+ * respective class. For all
+ * other dimensions, this
+ * function should not be called
+ * and triggers and assertion if
+ * done so.
+ */
+ bool get_face_orientation (const unsigned int face) const;
+
private:
/**
* Copy operator. This is normally
*/
unsigned int number_of_children () const;
+ /**
+ * Enquire some information about
+ * whether the face with the
+ * given number is in standard
+ * orientation or not. This
+ * information is only useful
+ * (and available) in 3d, see the
+ * documentation of the
+ * respective class. For all
+ * other dimensions, this
+ * function should not be called
+ * and triggers and assertion if
+ * done so.
+ */
+ bool get_face_orientation (const unsigned int face) const;
+
private:
/**
* Copy operator. This is
}
+
+template <int dim>
+bool
+TriaObjectAccessor<1,dim>::get_face_orientation (const unsigned int) const
+{
+ Assert (false, ExcInternalError());
+ return true;
+}
+
+
/*------------------------ Functions: QuadAccessor ---------------------------*/
template <int dim>
x[0]*y[1]/2.0-x[3]*y[2]/2.0+x[1]*y[2]/2.0-x[2]*y[1]/2.0);
}
+
#endif
}
+
+template <int dim>
+bool
+TriaObjectAccessor<2,dim>::get_face_orientation (const unsigned int) const
+{
+ Assert (false, ExcInternalError());
+ return true;
+}
+
+
+
/*------------------------ Functions: TriaObjectAccessor ---------------------------*/
template <int dim>