MCPcopy Create free account
hub / github.com/beefytech/Beef / BFRound

Function BFRound

BeefySysLib/img/ImgEffects.cpp:14–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

12USING_NS_BF;
13
14static inline float BFRound(float val)
15{
16 if (val < 0)
17 return (float) (int) (val - 0.5f);
18 else
19 return (float) (int) (val + 0.5f);
20}
21
22static uint16* CreateContourDataTable(ImageCurve* contour, float range = 1.0f)
23{

Callers 2

CompressMethod · 0.70
ApplyMethod · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected