On this page
vertexAttrib3fv method
void vertexAttrib3fv(Source
void vertexAttrib3fv(int indx, values) {
if ((values is Float32List) && (indx is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttrib3fv_Callback_2_(this, indx, values);
return;
}
if ((values is List<num>) && (indx is int)) {
_blink.BlinkWebGL2RenderingContext.instance
.vertexAttrib3fv_Callback_2_(this, indx, values);
return;
}
throw new ArgumentError("Incorrect number or type of arguments");
}
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dartlang.org/stable/1.24.3/dart-web_gl/RenderingContext2/vertexAttrib3fv.html