Skip to content
Snippets Groups Projects
Commit 48e5e891 authored by Pietro Incardona's avatar Pietro Incardona
Browse files

Fixing Point 1D

parent a4897a43
No related branches found
No related tags found
No related merge requests found
Pipeline #3230 failed
...@@ -114,7 +114,10 @@ template<unsigned int i, typename ele_g, bool has_attributes> std::string get_po ...@@ -114,7 +114,10 @@ template<unsigned int i, typename ele_g, bool has_attributes> std::string get_po
// We check if it is a vector or scalar like type // We check if it is a vector or scalar like type
if (vtk_dims<ctype>::value == 1) if (vtk_dims<ctype>::value == 1)
{
v_out += "SCALARS " + getAttrName<ele_g,has_attributes>::get(i,prop_names,oprp) + " " + type + "\n"; v_out += "SCALARS " + getAttrName<ele_g,has_attributes>::get(i,prop_names,oprp) + " " + type + "\n";
v_out += "LOOKUP_TABLE default\n";
}
else else
v_out += "VECTORS " + getAttrName<ele_g,has_attributes>::get(i,prop_names,oprp) + " " + type + "\n"; v_out += "VECTORS " + getAttrName<ele_g,has_attributes>::get(i,prop_names,oprp) + " " + type + "\n";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment