commonMain.compose.icons.tablericons.outline.BrandCinema4d.kt Maven / Gradle / Ivy
package compose.icons.tablericons.outline
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeCap.Companion.Round
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import compose.icons.tablericons.OutlineGroup
public val OutlineGroup.BrandCinema4d: ImageVector
get() {
if (_brandCinema4d != null) {
return _brandCinema4d!!
}
_brandCinema4d = Builder(name = "BrandCinema4d", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(9.65f, 6.956f)
arcToRelative(5.39f, 5.39f, 0.0f, false, false, 7.494f, 7.495f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 12.0f)
moveToRelative(-9.0f, 0.0f)
arcToRelative(9.0f, 9.0f, 0.0f, true, false, 18.0f, 0.0f)
arcToRelative(9.0f, 9.0f, 0.0f, true, false, -18.0f, 0.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(17.7f, 12.137f)
arcToRelative(5.738f, 5.738f, 0.0f, true, true, -5.737f, -5.737f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(17.7f, 12.338f)
verticalLineToRelative(-1.175f)
curveToRelative(0.0f, -0.47f, 0.171f, -0.92f, 0.476f, -1.253f)
arcToRelative(1.56f, 1.56f, 0.0f, false, true, 1.149f, -0.52f)
curveToRelative(0.827f, 0.0f, 1.523f, 0.676f, 1.62f, 1.573f)
curveToRelative(0.037f, 0.344f, 0.055f, 0.69f, 0.055f, 1.037f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(11.662f, 6.4f)
horizontalLineToRelative(1.175f)
curveToRelative(0.47f, 0.0f, 0.92f, -0.176f, 1.253f, -0.49f)
curveToRelative(0.333f, -0.314f, 0.52f, -0.74f, 0.52f, -1.184f)
curveToRelative(0.0f, -0.852f, -0.676f, -1.57f, -1.573f, -1.67f)
arcToRelative(9.496f, 9.496f, 0.0f, false, false, -1.037f, -0.056f)
}
}
.build()
return _brandCinema4d!!
}
private var _brandCinema4d: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy