Creating FOV visualiser

Hello,

I want to create an FOV visualiser. I have a dot product region that I want to display/visualise, to show where the npc can see. For example in the image, a line from the player at a 0.3 dot product value from the character (apologies for terminology ) and another at -0.3.

I am really struggling with the math behind this

Currently I have tried making a part, setting position at the character but I struggle at making the line protrude at the dot product value.

Thank you for any help

2 Likes

I feel like there’s a more proper solution but all I can think of is just turning the dot product into an angle and making two new CFrames that point away using that angle.

1 Like

Dot product isn’t needed for this. You just need the angle between the two vectors which is

theta = (A dot B)/||A|| * ||B||

||A|| is the magnitude of vector A, same with ||B||. A dot B is the dot product between them.

Take that angle and do CFrame calculations like @wiremass said

2 Likes

Based on the picture, I’m guessing you want lines? See the comments below for an explanation of what’s happening but you’re probably looking for something like this:

Code

local function getSegmentsFromOrigin(cframe, dotFovRange, fovLength, rotationAxis)
	-- the axis we'll rotate around (relative to the local space of the cframe)
	rotationAxis = rotationAxis or Vector3.yAxis

	-- clamp the fov dot product to ensure it's normalised
	dotFovRange = dotFovRange or 0.3
	dotFovRange = math.clamp(dotFovRange, -1, 1)

	-- clamp line length to positive number
	fovLength = math.max(fovLength or 1, 0)*0.5
	
	-- compute the angle from the dot product
	local theta = math.acos(dotFovRange)

	-- compute the first line's origin (offset by the line length)
	local lineA = cframe * CFrame.fromAxisAngle(rotationAxis, theta)
	lineA += lineA.LookVector*fovLength

	-- compute the second line's origin by negating the angle (offset by the line length)
	local lineB = cframe * CFrame.fromAxisAngle(rotationAxis, -theta)
	lineB += lineB.LookVector*fovLength

	return lineA, lineB
end

Usage

-- e.g. to use the method below...

local cframe = workspace.some.part.CFrame -- the turret origin
local fovRange = 0.3                      -- the dot product you measured earlier
local fovLength = 10                      -- i.e. the far plane z (or, the maximum distance of each line)
local rotationAxis = Vector3.yAxis        -- the axis on which to rotate (defaults to the yAxis)

local cframeLineA, cframeLineB = getSegmentsFromOrigin(cframe, fovRange, fovLength, rotationAxis)

-- apply to the parts ...
partLineA.CFrame = cframeLineA
partLineBCFrame = cframeLineB 
1 Like

Thank you, what ive been consistently running into is the issue of the lines not facing the way the character is facing. Like not being relative to their look vector?, I have tried multiplying the character look vector and the parameter cframe but then it just seems to be placed in the same position all the time. The angled zone seems to be completely correct, is this a cframe.angles thing?

I hope im not asking for too much, just this angle logic has been very hard to implement for a while now.

thank you everyone for your help

Can you show the code for the picture you’ve posted? Will take a look at what’s happened

Sorry for the late reply I have been working. But a fresh mind did make me realise that my CFrame parameter was a position converted to a CFrame, hence no angles. Thank you very much for your help

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.