Primero, no se escribe otrosPuntos[], sino otrosPuntos.
Segundo, length es un atributo del array, no un método, se le llama sin paréntesis
Código Java:
Ver originalpublic Punto calcularMasCercano(Punto[] otrosPuntos) {
for(int i=0;i<otrosPuntos.length;i++){
// otrosPuntos[i] = ...
}
}