< Summary - ReFlex - Library

Information
Class: ReFlex.Core.Tracking.Util.DepthCameraFrame
Assembly: ReFlex.Core.Tracking
File(s): D:\a\reflex\reflex\library\src\Core\Tracking\Util\DepthCameraFrame.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 18
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_Depth()100%210%

File(s)

D:\a\reflex\reflex\library\src\Core\Tracking\Util\DepthCameraFrame.cs

#LineLine coverage
 1using ReFlex.Core.Common.Components;
 2
 3namespace ReFlex.Core.Tracking.Util
 4{
 5    /// <summary>
 6    /// A entity that contains all information of an recorded frame.
 7    /// </summary>
 8    public class DepthCameraFrame
 9    {
 10        /// <summary>
 11        /// Gets or sets the depth informations of a frame.
 12        /// </summary>
 13        /// <value>
 14        /// The depth informations.
 15        /// </value>
 016        public Point3[] Depth { get; set; }
 17    }
 18}

Methods/Properties

get_Depth()