var point = Vector2(100, 0)
To place your node at a specific angle around a given point:
position = point + Vector2(cos(angle), sin(angle)) * distance
To make your node rotate around that point, while keeping the same distance:
position = point + (position - point).rotated(angle)
To make it look at the point:
look_at(point)