MCPcopy Create free account
hub / github.com/arrayfire/forge / fg_set_vector_field_legend

Function fg_set_vector_field_legend

src/api/c/vector_field.cpp:73–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73fg_err fg_set_vector_field_legend(fg_vector_field pField, const char* pLegend)
74{
75 try {
76 ARG_ASSERT(0, (pField!=0));
77 ARG_ASSERT(1, (pLegend!=0));
78
79 getVectorField(pField)->setLegend(pLegend);
80 }
81 CATCHALL
82
83 return FG_ERR_NONE;
84}
85
86fg_err fg_get_vector_field_vertex_buffer(unsigned* pOut, const fg_vector_field pField)
87{

Callers 1

setLegendMethod · 0.85

Calls 2

getVectorFieldFunction · 0.85
setLegendMethod · 0.45

Tested by

no test coverage detected