Vyacheslav Brevnov

Results 12 comments of Vyacheslav Brevnov

```C# private void AddPieSliceInMesh( MeshBuilder meshBuilder, Vector3 center, double startAngle, double endAngle, double outerRadius, double innerRadius, int thetaDiv = 20 ) { var upVector = new Vector3(0, 1, 0); var...

Yes, it works. Don't forget to set the colors. Example like this way used: ```C# //color is type SharpDX.Color4 var meshBuilder = new MeshBuilder(false, false); AddPieSliceInMesh( meshBuilder, point, 0, 50,...

Oh, yes my code only for pie slice in 2D. My mistake. My code gives you two sides (top and bottom - its two sides with offset) of five. It...

Or maybe this is not a bug and someone knows how to fix it?

@hazzik I checked locally on Oracle 19c: test passed. Perhaps the problem is that on TC Oracle 18c. In release 18c, "Manual completion of unmanaged queries" was added (https://docs.oracle.com/en/database/oracle/oracle-database/18/newft/new-features.html#GUID-EFC832BE-DC2C-4997-8C38-8A9E27A4FFC4). But...

On 18.3 (on my local server) it works fine, all tests passed. The only difference from TC is that I have Oracle on Windows.

> On 18.3 (on my local server) it works fine, all tests passed. The only difference from TC is that I have Oracle on Windows. "Canceled in 360m - Oracle"...

On "Git Hub Action" yes but not on teamcity(I initially thought that the assembly hung on the TC due to deadlock). So "misled me" means that the problem is not...

It looks like a different implementation of what I did(https://github.com/DapperLib/Dapper/pull/1882) as part of the solution https://github.com/DapperLib/Dapper/issues/1239 (because in the comments to the issue it was https://github.com/DapperLib/Dapper/issues/1239#issuecomment-1035448069). The fundamental difference is...