Home
last modified time | relevance | path

Searched refs:lat_rad_1 (Results 1 – 3 of 3) sorted by relevance

/external/grpc-grpc/examples/python/route_guide/
Droute_guide_server.py44 lat_rad_1 = math.radians(lat_1)
51 (math.cos(lat_rad_1) * math.cos(lat_rad_2) * pow(
/external/grpc-grpc/examples/python/multiplex/
Dmultiplex_server.py46 lat_rad_1 = math.radians(lat_1)
52 (math.cos(lat_rad_1) * math.cos(lat_rad_2) * pow(
/external/grpc-grpc/examples/cpp/route_guide/
Droute_guide_server.cc61 float lat_rad_1 = ConvertToRadians(lat_1); in GetDistance() local
66 float a = pow(sin(delta_lat_rad/2), 2) + cos(lat_rad_1) * cos(lat_rad_2) * in GetDistance()