use Arduino to control stepper motors and interpolation operation

I want to use Arduino as an axis card to control 3 stepper motors

The three stepper motor must be done interpolation operation(arc interpolation and straight line interpolation)

Arduino can do it?

Thank-you.

Yes.

...R

PS... If you want a more extensive answer then YOU need to provide a lot more information.

First of all.
Thank you for your reply.

I want to use Arduino as an axis card to control 3 stepper motors

The 3 stepper motors are orientalmotor

I want to use this architecture to do the interpolation operation
e.g.
Draw a circle(this round wire must not be serrated and must be smooth)
Draw a slash(this slash must not be serrated)

Ultimately I want to apply this architecture to a CNC or 3D printer

Originally intended to use three-axis axis card to do the control

But want to try something different so use Arduino

Can you give me some video on the actual situation of multi-axis control using Arduino?

guk86554:
Draw a circle(this round wire must not be serrated and must be smooth)
Draw a slash(this slash must not be serrated)

I suspect you will save yourself a lot of trouble if you learn about Gcode and an Arduino program called GRBL

And if you use a drawing program to create your design and a suitable program to convert the drawing to GCode. There is a program called slic3r (note the strange spelling) that converts 3D images into Gcode for 3D printers. If you trick it into thinking your drawing is just 1 layer deep you will get nice Gcode for a simple drawing.

There are also many other programs that will convert drawing files to Gcode.

...R