-
Notifications
You must be signed in to change notification settings - Fork 389
Expand file tree
/
Copy pathCircleComponent.cpp
More file actions
40 lines (32 loc) · 960 Bytes
/
CircleComponent.cpp
File metadata and controls
40 lines (32 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// ----------------------------------------------------------------
// From Game Programming in C++ by Sanjay Madhav
// Copyright (C) 2017 Sanjay Madhav. All rights reserved.
//
// Released under the BSD License
// See LICENSE in root directory for full details.
// ----------------------------------------------------------------
#include "CircleComponent.h"
#include "Actor.h"
CircleComponent::CircleComponent(class Actor* owner)
:Component(owner)
,mRadius(0.0f)
{
}
const Vector2& CircleComponent::GetCenter() const
{
return mOwner->GetPosition();
}
float CircleComponent::GetRadius() const
{
return mOwner->GetScale() * mRadius;
}
bool Intersect(const CircleComponent& a, const CircleComponent& b)
{
// Calculate distance squared
Vector2 diff = a.GetCenter() - b.GetCenter();
float distSq = diff.LengthSq();
// Calculate sum of radii squared
float radiiSq = a.GetRadius() + b.GetRadius();
radiiSq *= radiiSq;
return distSq <= radiiSq;
}