1686f08040
Release pipeline / Get version (push) Has been cancelled
Release pipeline / Get Chart Name (push) Has been cancelled
Release pipeline / tests (push) Has been cancelled
Release pipeline / builds (push) Has been cancelled
Release pipeline / builds-ghcr (push) Has been cancelled
Release pipeline / test-deployments (push) Has been cancelled
Release pipeline / deploy (push) Has been cancelled
Release pipeline / Helm chart oci (push) Has been cancelled
Release pipeline / npm (push) Has been cancelled
Release pipeline / snyk (push) Has been cancelled
13 lines
309 B
C#
13 lines
309 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ara3D.IfcLoader
|
|
{
|
|
/// <summary>
|
|
/// This is the format of a Color that is generated from the WebIfcDll.
|
|
/// </summary>
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct IfcColor
|
|
{
|
|
public double R, G, B, A;
|
|
}
|
|
} |