<?xml version="1.0" encoding="utf-8"?><span>
<doc>
<assembly>
<name>System.Numerics.Vectors</name>
</assembly>
<members>
<member name="T:System.Numerics.Matrix3x2">
<summary>Represents a 3x2 matrix.</summary>
</member>
<member name="M:System.Numerics.Matrix3x2.#ctor(System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
<summary>Creates a 3x2 matrix from the specified components.</summary>
<param name="m11">The value to assign to the first element in the first row.</param>
<param name="m12">The value to assign to the second element in the first row.</param>
<param name="m21">The value to assign to the first element in the second row.</param>
<param name="m22">The value to assign to the second element in the second row.</param>
<param name="m31">The value to assign to the first element in the third row.</param>
<param name="m32">The value to assign to the second element in the third row.</param>
</member>
<member name="M:System.Numerics.Matrix3x2.Add(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2)">
<summary>Adds each element in one matrix with its corresponding element in a second matrix.</summary>
<param name="value1">The first matrix.</param>
<param name="value2">The second matrix.</param>
<returns>The matrix that contains the summed values of <paramref name="value1">value1</paramref> and <paramref name="value2">value2</paramref>.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateRotation(System.Single)">
<summary>Creates a rotation matrix using the given rotation in radians.</summary>
<param name="radians">The amount of rotation, in radians.</param>
<returns>The rotation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateRotation(System.Single,System.Numerics.Vector2)">
<summary>Creates a rotation matrix using the specified rotation in radians and a center point.</summary>
<param name="radians">The amount of rotation, in radians.</param>
<param name="centerPoint">The center point.</param>
<returns>The rotation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single)">
<summary>Creates a scaling matrix from the specified X and Y components.</summary>
<param name="xScale">The value to scale by on the X axis.</param>
<param name="yScale">The value to scale by on the Y axis.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Numerics.Vector2)">
<summary>Creates a scaling matrix that scales uniformly with the specified scale with an offset from the specified center.</summary>
<param name="scale">The uniform scale to use.</param>
<param name="centerPoint">The center offset.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single,System.Single,System.Numerics.Vector2)">
<summary>Creates a scaling matrix that is offset by a given center point.</summary>
<param name="xScale">The value to scale by on the X axis.</param>
<param name="yScale">The value to scale by on the Y axis.</param>
<param name="centerPoint">The center point.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Single)">
<summary>Creates a scaling matrix that scales uniformly with the given scale.</summary>
<param name="scale">The uniform scale to use.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2)">
<summary>Creates a scaling matrix from the specified vector scale.</summary>
<param name="scales">The scale to use.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateScale(System.Numerics.Vector2,System.Numerics.Vector2)">
<summary>Creates a scaling matrix from the specified vector scale with an offset from the specified center point.</summary>
<param name="scales">The scale to use.</param>
<param name="centerPoint">The center offset.</param>
<returns>The scaling matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single)">
<summary>Creates a skew matrix from the specified angles in radians.</summary>
<param name="radiansX">The X angle, in radians.</param>
<param name="radiansY">The Y angle, in radians.</param>
<returns>The skew matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateSkew(System.Single,System.Single,System.Numerics.Vector2)">
<summary>Creates a skew matrix from the specified angles in radians and a center point.</summary>
<param name="radiansX">The X angle, in radians.</param>
<param name="radiansY">The Y angle, in radians.</param>
<param name="centerPoint">The center point.</param>
<returns>The skew matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateTranslation(System.Numerics.Vector2)">
<summary>Creates a translation matrix from the specified 2-dimensional vector.</summary>
<param name="position">The translation position.</param>
<returns>The translation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.CreateTranslation(System.Single,System.Single)">
<summary>Creates a translation matrix from the specified X and Y components.</summary>
<param name="xPosition">The X position.</param>
<param name="yPosition">The Y position.</param>
<returns>The translation matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Equals(System.Numerics.Matrix3x2)">
<summary>Returns a value that indicates whether this instance and another 3x2 matrix are equal.</summary>
<param name="other">The other matrix.</param>
<returns>true if the two matrices are equal; otherwise, false.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Equals(System.Object)">
<summary>Returns a value that indicates whether this instance and a specified object are equal.</summary>
<param name="obj">The object to compare with the current instance.</param>
<returns>true if the current instance and <paramref name="obj">obj</paramref> are equal; otherwise, false```. If <code data-dev-comment-type="paramref">obj</code> isnull, the method returnsfalse`.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.GetDeterminant">
<summary>Calculates the determinant for this matrix.</summary>
<returns>The determinant.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.GetHashCode">
<summary>Returns the hash code for this instance.</summary>
<returns>The hash code.</returns>
</member>
<member name="P:System.Numerics.Matrix3x2.Identity">
<summary>Gets the multiplicative identity matrix.</summary>
<returns>The multiplicative identify matrix.</returns>
</member>
<member name="M:System.Numerics.Matrix3x2.Invert(System.Numerics.Matrix3x2,System.Numerics.Matrix3x2@)">
<summary>Inverts the specified matrix. The return value indicates whether the operation succeeded.</summary>
<param name="matrix">The matrix to invert.</param>
<param name="result">When this method returns, contains the inverted matrix if the operation succeeded.</param>
<returns>true if <paramref name="matrix">matrix</paramref> was converted successfully; otherwise, false.</returns>
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
cocos creator的jsc解密程序,支持最新版。 请查看:https://blog.csdn.net/czysoft/article/details/105753711 有问题可以在底下留言,有时间我会改进的 这是最新版工具,需要.net framework4.7.2支持,支持1.9.3之前的版本的jsc解密 *修正有些情况下解出来还是PK开头的加密内容 *增加加密功能 *修正解密后中文为乱码的问题 *增加解密时显示解密方式(底下状态栏)
资源推荐
资源详情
资源评论
收起资源包目录
新版jsc解密1.44.rar (110个子文件)
JscDecodeCsharp.exe.config 565B
ICSharpCode.SharpZipLib.dll 194KB
System.Net.Http.dll 194KB
System.Data.Common.dll 151KB
System.Memory.dll 145KB
System.Numerics.Vectors.dll 113KB
System.IO.Compression.dll 108KB
netstandard.dll 96KB
System.ValueTuple.dll 77KB
System.Security.Cryptography.Algorithms.dll 46KB
System.Threading.Overlapped.dll 37KB
System.Diagnostics.Tracing.dll 31KB
System.Net.Sockets.dll 30KB
System.Runtime.dll 29KB
System.Runtime.InteropServices.RuntimeInformation.dll 28KB
System.Buffers.dll 27KB
System.Runtime.Serialization.Primitives.dll 26KB
System.Globalization.Extensions.dll 25KB
System.Runtime.Serialization.Xml.dll 24KB
uzip193.dll 24KB
System.Runtime.InteropServices.dll 24KB
System.Diagnostics.StackTrace.dll 23KB
System.Xml.XPath.XDocument.dll 22KB
System.Security.Cryptography.X509Certificates.dll 22KB
System.ComponentModel.TypeConverter.dll 22KB
System.Security.SecureString.dll 22KB
System.Net.NetworkInformation.dll 22KB
System.Dynamic.Runtime.dll 22KB
System.Linq.Expressions.dll 22KB
System.Threading.Tasks.dll 22KB
System.Net.Primitives.dll 22KB
System.Reflection.dll 22KB
System.Threading.dll 22KB
System.Security.Cryptography.Primitives.dll 21KB
System.Runtime.CompilerServices.VisualC.dll 21KB
System.ComponentModel.EventBasedAsync.dll 21KB
System.ComponentModel.Primitives.dll 21KB
System.Globalization.Calendars.dll 21KB
System.Diagnostics.TraceSource.dll 21KB
System.Reflection.Primitives.dll 21KB
System.Diagnostics.Contracts.dll 21KB
System.Diagnostics.Process.dll 21KB
System.Runtime.Extensions.dll 21KB
System.Xml.ReaderWriter.dll 21KB
System.Xml.XmlSerializer.dll 21KB
System.Xml.XmlDocument.dll 21KB
System.Xml.XDocument.dll 21KB
System.Collections.dll 21KB
System.Text.Encoding.dll 21KB
System.Net.Security.dll 21KB
System.ObjectModel.dll 21KB
System.Diagnostics.TextWriterTraceListener.dll 21KB
System.Runtime.Serialization.Formatters.dll 21KB
System.Security.Cryptography.Encoding.dll 21KB
System.Diagnostics.FileVersionInfo.dll 21KB
System.Security.Cryptography.Csp.dll 21KB
System.Runtime.Serialization.Json.dll 21KB
System.Resources.ResourceManager.dll 21KB
System.IO.FileSystem.DriveInfo.dll 21KB
System.IO.FileSystem.Primitives.dll 21KB
System.Threading.Tasks.Parallel.dll 21KB
System.IO.UnmanagedMemoryStream.dll 21KB
System.Text.RegularExpressions.dll 21KB
System.Text.Encoding.Extensions.dll 21KB
System.Net.WebHeaderCollection.dll 21KB
System.Net.WebSockets.Client.dll 21KB
System.Collections.Specialized.dll 21KB
System.IO.FileSystem.Watcher.dll 21KB
System.Collections.NonGeneric.dll 21KB
System.IO.Compression.ZipFile.dll 21KB
System.Reflection.Extensions.dll 21KB
System.Collections.Concurrent.dll 21KB
System.Threading.ThreadPool.dll 21KB
Microsoft.Win32.Primitives.dll 21KB
System.IO.MemoryMappedFiles.dll 21KB
System.Drawing.Primitives.dll 21KB
System.Diagnostics.Tools.dll 21KB
System.Net.NameResolution.dll 21KB
System.IO.IsolatedStorage.dll 21KB
System.Diagnostics.Debug.dll 21KB
System.Security.Principal.dll 21KB
System.Threading.Timer.dll 21KB
System.Resources.Reader.dll 21KB
System.Runtime.Handles.dll 21KB
System.Threading.Thread.dll 21KB
System.Runtime.Numerics.dll 21KB
System.Security.Claims.dll 21KB
System.Resources.Writer.dll 21KB
System.ComponentModel.dll 21KB
System.Net.WebSockets.dll 21KB
System.Linq.Parallel.dll 21KB
System.Linq.Queryable.dll 21KB
System.Globalization.dll 21KB
System.IO.FileSystem.dll 21KB
System.Net.Requests.dll 21KB
System.AppContext.dll 21KB
System.Xml.XPath.dll 21KB
System.IO.Pipes.dll 21KB
System.Net.Ping.dll 21KB
System.Console.dll 21KB
共 110 条
- 1
- 2
资源评论
- 王清水2020-11-20这不是骗分???
- ttxyz55432021-04-05骗子,没有用压,需要密钥
- iosandAndroid2021-12-25应该还可以
- Ldkjfn2022-02-14都没有这个命令啊decrypt、有会的加我q2463536899.
- cexwovfpqq2021-07-30骗子,密钥正确的还乱码,别的地方不要分下载了一个一摸一样的,垃圾玩意
czysoft
- 粉丝: 21
- 资源: 18
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功