There are infinite points on the circumference of a circle, so it's quite impossible to get all of them.
However, it is possible to determine if a given point is on the circle's border using just your centre coordinate
and your radius
The equation of a circle at the origin is given by the parametric equation:
x = cos(angle) * radius
y = sin(angle) * radius
For the example circle: centre = (1, 1) radius = 2
and the example point (3, 1)
dx = point.x - centre.x
dy = point.y - centre.y
dx = 3 - 1 = 2
dy = 1 - 1 - 0
angle = atan2(dy/dx) = 0
dx = cos(angle) * radius
rearranging gives:
radius = dx/cos(angle)
radius = 2/cos(0)
radius = 2/1
radius = 2
The distance between this point and the centre of the circle is the same as the radius, therefore the point is on the circumference.