How to get a point given distance and angle?

Hi all!
I need to get a point position (D) with 3 variables known: original point (A), angle (B), distance ( C)
Untitled

I have looked into the Angle and Point class but I can’t find the one I’m looking for…
There should be a built in Phaser method for this right?
Please guide me into the right direction!

isn’t it https://photonstorm.github.io/phaser3-docs/Phaser.Math.html#.RotateTo__anchor that you need?

x = C * cos(B)
y = C * sin(B)

Aha! No wonder I couldn’t find it, the method is available since v3.24 (mine’s 3.23).
Anyway, it works perfectly, so thanks a lot!

Yep I know of this, but I was looking for a built in Phaser function so I can code less XD.
The method from @thenonamezz above is using exactly this formula.
Thanks for your answer!