toggle menu
BunyipsLib
v7.1.0-master-e7fb45aa5
BunyipsLib
switch theme
search in API
BunyipsLib
/
au.edu.sa.mbhs.studentrobotics.bunyipslib.localization.accumulators
/
BoundedAccumulator
Bounded
Accumulator
open
class
BoundedAccumulator
:
Accumulator
Accumulator to define clamping limits on the field.
Author
Lucas Bubner, 2024
Since
6.0.0
Members
Constructors
Bounded
Accumulator
Link copied to clipboard
constructor
(
@
NonNull
robotRadius
:
Measure
<
Distance
>
)
Create a new BoundedAccumulator.
Properties
MANUAL_VELOCITY_INHIBITION_TIME
Link copied to clipboard
open
var
MANUAL_VELOCITY_INHIBITION_TIME
:
Double
Time in seconds that will be used to inhibit the velocity calculation after the robot pose is rebounded.
MAX_BOUNDS
Link copied to clipboard
@
NonNull
open
var
MAX_BOUNDS
:
Rect
Maximum bounds (default full FTC field)
Inherited properties
MAX_POSE_HISTORY
Link copied to clipboard
open
var
MAX_POSE_HISTORY
:
Int
The maximum pose history length that should be stored in an accumulator.
pose
Link copied to clipboard
@
NonNull
protected
open
var
pose
:
Pose2d
pose
History
Link copied to clipboard
@get:
NonNull
open
val
poseHistory
:
LinkedList
<
Pose2d
>
velocity
Link copied to clipboard
@
NonNull
protected
open
var
velocity
:
PoseVelocity2d
Functions
accumulate
Link copied to clipboard
open
fun
accumulate
(
@
NonNull
twist
:
Twist2dDual
<
Time
>
)
Run one accumulation of this accumulator to update the pose with this delta.
with
Restricted
Areas
Link copied to clipboard
@
NonNull
open
fun
withRestrictedAreas
(
@
NonNull
areas
:
Array
<
Rect
>
)
:
BoundedAccumulator
@
NonNull
open
fun
withRestrictedAreas
(
@
NonNull
seasonField
:
Field.Season
)
:
BoundedAccumulator
Set areas on the field that the robot should not be able to move into.
Inherited functions
copy
To
Link copied to clipboard
fun
copyTo
(
@
NonNull
other
:
Accumulator
)
Copy the state of this accumulator to another accumulator.
get
Pose
Link copied to clipboard
@
NonNull
fun
getPose
(
)
:
Pose2d
Calculate the accumulated pose from an internal localizer.
get
Velocity
Link copied to clipboard
@
NonNull
fun
getVelocity
(
)
:
PoseVelocity2d
Calculate the first derivative of the accumulated pose from an internal localizer.
set
Pose
Link copied to clipboard
open
fun
setPose
(
@
NonNull
vector
:
Vector2d
,
@
NonNull
vectorUnit
:
Distance
,
heading
:
Double
,
@
NonNull
headingUnit
:
Angle
)
fun
setPose
(
@
NonNull
newPose
:
Pose2d
)
Reset the accumulated pose estimate to this pose.