I was wondering, is there a difference between:
public float curvePoint(float... v) {
and:
public float curvePoint(float[] v) {
They both seem the same for me, except in syntax.
I was wondering, is there a difference between:
public float curvePoint(float... v) {
and:
public float curvePoint(float[] v) {
They both seem the same for me, except in syntax.