• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

MeltyPlayer / MeltyTool / 17993985084

25 Sep 2025 01:17AM UTC coverage: 39.931%. Remained the same
17993985084

push

github

MeltyPlayer
Used concrete types throughout solution.

5826 of 16491 branches covered (35.33%)

Branch coverage included in aggregate %.

44 of 85 new or added lines in 38 files covered. (51.76%)

1 existing line in 1 file now uncovered.

24549 of 59577 relevant lines covered (41.21%)

71883.78 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/FinModelUtility/Fin/Fin/src/animation/types/vector2/CombinedVector2Keyframes.cs
1
using System;
2
using System.Collections.Generic;
3
using System.Numerics;
4

5
using fin.animation.interpolation;
6
using fin.animation.keyframes;
7

8
namespace fin.animation.types.vector2;
9

10
public class CombinedVector2Keyframes<TKeyframe>(
×
11
    ISharedInterpolationConfig sharedConfig,
×
12
    IKeyframeInterpolator<TKeyframe, Vector2> interpolator,
×
NEW
13
    IndividualInterpolationConfig<Vector2> individualConfig = null)
×
14
    : ICombinedVector2Keyframes<TKeyframe>
15
    where TKeyframe : IKeyframe<Vector2> {
16
  private readonly InterpolatedKeyframes<TKeyframe, Vector2> impl_
×
17
      = new(sharedConfig, interpolator, individualConfig);
×
18

19
  public ISharedInterpolationConfig SharedConfig => sharedConfig;
×
20

21
  public IndividualInterpolationConfig<Vector2> IndividualConfig
22
    => individualConfig;
×
23

24
  public IReadOnlyList<TKeyframe> Definitions => this.impl_.Definitions;
×
25
  public bool HasAnyData => this.impl_.HasAnyData;
×
26

27
  public void Add(TKeyframe keyframe) => this.impl_.Add(keyframe);
×
28

29
  public bool TryGetAtFrame(float frame, out Vector2 value)
30
    => this.impl_.TryGetAtFrame(frame, out value);
×
31

32
  public void GetAllFrames(Span<Vector2> dst) => this.impl_.GetAllFrames(dst);
×
33

34
  public bool TryGetSimpleKeyframes(
35
      out IReadOnlyList<(float frame, Vector2 value)> keyframes,
36
      out IReadOnlyList<(Vector2 tangentIn, Vector2 tangentOut)>? tangentKeyframes)
37
    => this.impl_.TryGetSimpleKeyframes(out keyframes, out tangentKeyframes);
×
38
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc