1
1
Fork 0
mirror of https://github.com/DualBrain/QB64.git synced 2023-11-19 13:10:13 +00:00
QB64-website/samples/circle-intersecting-circle/index.md

33 lines
1.5 KiB
Markdown
Raw Permalink Normal View History

2022-12-26 20:41:23 +00:00
[Home](https://qb64.com) • [News](../../news.md) • [GitHub](https://github.com/QB64Official/qb64) • [Wiki](wiki.md) • [Samples](../../samples.md) • [InForm](../../inform.md) • [GX](../../gx.md) • [QBjs](../../qbjs.md) • [Community](../../community.md) • [More...](../../more.md)
## SAMPLE: CIRCLE INTERSECTING CIRCLE
![circleintersectcircle.png](img/circleintersectcircle.png)
### Authors
[🐝 bplus](../bplus.md) [🐝 STxAxTIC](../stxaxtic.md)
### Description
2022-06-10 01:45:40 +00:00
```text
Here we present two (equivalent) methods for calculating the intersection points between any two circles.
2022-06-10 01:45:40 +00:00
```
2022-06-11 01:09:02 +00:00
### QBjs
> Please note that QBjs is still in early development and support for these examples is extremely experimental (meaning will most likely not work). With that out of the way, give it a try!
2022-07-06 18:56:55 +00:00
* [LOAD "circleintersectcircle.bas"](https://qbjs.org/index.html?src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
* [RUN "circleintersectcircle.bas"](https://qbjs.org/index.html?mode=auto&src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
* [PLAY "circleintersectcircle.bas"](https://qbjs.org/index.html?mode=play&src=https://qb64.com/samples/circle-intersecting-circle/src/circleintersectcircle.bas)
2022-06-11 01:09:02 +00:00
### File(s)
* [circleintersectcircle.bas](src/circleintersectcircle.bas)
2022-07-07 00:47:22 +00:00
🔗 [geometry](../geometry.md), [intersections](../intersections.md), [qbjs](../qbjs.md)
<sub>Reference: [qb64forum](https://qb64forum.alephc.xyz/index.php?topic=2299.0) </sub>