14 lines
293 B
Go
14 lines
293 B
Go
|
package section
|
||
|
|
||
|
import "joylink.club/bj-rtsts-server/ats/verify/simulation/wayside/face"
|
||
|
|
||
|
type SlopeModel struct {
|
||
|
face.DeviceModel
|
||
|
StartLinkIndex int32
|
||
|
StartLinkOffset int32
|
||
|
EndLinkIndex int32
|
||
|
EndLinkOffset int32
|
||
|
//坡度角的三角函数(应该是sin)*1000
|
||
|
DegreeTrig int32
|
||
|
}
|