Denis
Denis
I'm trying your easeInOutCubic: ``` double easeInOutCubic( double t ) { return t < 0.5 ? 4 * t * t * t : 1 + (--t) * (2 *...
Usually easy (In) functions is slower in beginning as you can see here: http://easings.net/ru#easeInSine But your Sine functions is swapped:  Your function: sin( 1.5707963 * t ); Tween.js (this...
`BlockingCollection` has property `IsCompleted`. But your `AsyncCollection` hasn't public `IsCompleted`. Can you add it? I need it to check producer is completed or not.
Unfortunately, default conversion methods (`Convert.ChangeType`, `TypeConverter.ConvertFrom`) are not enough. There were cases when I needed "external argument converter" to convert source argument to target type (https://github.com/nunit/nunit/issues/3380, https://github.com/nunit/nunit/issues/3385, https://github.com/nunit/nunit/issues/3571). There were...
I use require for browser and node for gulp. ``` { "ambientDependencies": { "jquery": "registry:dt/jquery#1.10.0+20160417213236", "require": "registry:dt/require#2.1.20+20160316155526" }, "ambientDevDependencies": { "node": "registry:dt/node#4.0.0+20160509154515" } } ``` These typings are incompatible. But...
Current settings: ``` { "AttributesTolerance": 2, "KeepFirstAttributeOnSameLine": false, "MaxAttributeCharactersPerLine": 0, "MaxAttributesPerLine": 1, "NewlineExemptionElements": "RadialGradientBrush, GradientStop, LinearGradientBrush, ScaleTransfom, SkewTransform, RotateTransform, TranslateTransform, Trigger, Condition, Setter", "SeparateByGroups": false, "AttributeIndentation": 0, "AttributeIndentationStyle": 1, "RemoveDesignTimeReferences":...
If I disable global option `FormatOnSave` and enable local, then in the end it's disabled (enabled is expected). But if I enable global option and disable local then it's disabled...
I wanted to use the `Settings.XamlStyler` file. But I faced with the fact that VS doesn't support this format. So, manual editing is not easy. I think it would be...
For example I have element with attributes: If I set `First-line attributes` with "Header3", then I will get: It is expected that this reordering option will not break line. And...
[TestCase( "\uffff" )] public void Test_01(string value) { TestContext.WriteLine( value ); } After running this test stays white. Neither green nor red, just white. Why? It is very strange.