Class LapBilinearMap
A LapBilinearMap
is a type of BilinearMap that can be attached to a specific lap within a session.
Inherited Members
Namespace: MESL.SqlRace.Domain
Assembly: MESL.SqlRace.Domain.dll
Syntax
public class LapBilinearMap : LapMapBase
Constructors
LapBilinearMap(Int16, String, String, String, String, String, String, String, Double[], Double[], Double[])
Initialises a new instance of the LapBilinearMap class.
Declaration
public LapBilinearMap(short lapNumber, string name, string description, string units, string format, string conversionXFunctionName, string conversionYFunctionName, string conversionValueFunctionName, double[] breakXPoints, double[] breakYPoints, double[] values)
Parameters
Type | Name | Description |
---|---|---|
System.Int16 | lapNumber | The lap number. |
System.String | name | The name of the map. |
System.String | description | The description. |
System.String | units | The units of the map. |
System.String | format | The format of the map. |
System.String | conversionXFunctionName | Name of the conversion X function. |
System.String | conversionYFunctionName | Name of the conversion Y function. |
System.String | conversionValueFunctionName | Name of the conversion value function. |
System.Double[] | breakXPoints | The break X points. |
System.Double[] | breakYPoints | The break Y points. |
System.Double[] | values | The values of the map. |
Properties
BreakYPoints
Gets the break Y points.
Declaration
public double[] BreakYPoints { get; }
Property Value
Type | Description |
---|---|
System.Double[] | The break Y points. |
ConversionYFunctionName
Gets the name of the conversion Y function.
Declaration
public string ConversionYFunctionName { get; }
Property Value
Type | Description |
---|---|
System.String | The name of the conversion Y function. |