TFT screen object drawing

Hi everyone, I would like to know if there is a way to draw multiple object (let say circles) with the same command with the ILI9341 screen?

For example: tft.fillCircle(119, 159, 10, YELLOW) && (150, 159, 10, BLUE) && (180, 159, 10, GREEN) ;

or

tft.fillCircle {

(119, 159, 10, YELLOW);
(150, 159, 10, BLUE);
(180, 159, 10, GREEN) ;

}

Thanks!

No. You must use separate statements.

Study your C++ textbooks.